2017 © Pedro Peláez
 

library markdown-blade

image

axxim/markdown-blade

  • Wednesday, September 24, 2014
  • by clone1018
  • Repository
  • 1 Watchers
  • 1 Stars
  • 139 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Markdown Blade Parser

Based completely on https://github.com/Kindari/laravel-markdown/pull/2, (*1)

Installation

Add axxim/markdown-blade to composer.json., (*2)

"axxim/markdown-blade": dev-master"

Run composer update. Now open up app/config/app.php and add the service provider to your providers array, after the ViewServiceProvider., (*3)

'providers' => array(
    ...
        'Illuminate\View\ViewServiceProvider',
        'Axxim\MarkdownBlade\MarkdownBladeServiceProvider',
    ...
)

Usage

Create a view file named foobar.md.blade.php then use it like normal:, (*4)

return View::make('foobar');

The Versions

24/09 2014

dev-master

9999999-dev

  Sources   Download

The Requires