2017 © Pedro Peláez
 

library laravel-markdown

Markdown Integration with Laravel's View system

image

kindari/laravel-markdown

Markdown Integration with Laravel's View system

  • Saturday, July 27, 2013
  • by kindari
  • Repository
  • 6 Watchers
  • 40 Stars
  • 1,063 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 7 Forks
  • 4 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Markdown

Laravel Markdown is a wrapper of dflydev/markdown which integrates it into Laravel's View engine. It supports markdown parsing, php preprocessing of markdown files, and blade preprocessing., (*1)

Installation

Add kindari/laravel-markdown to composer.json., (*2)

"kindari/laravel-markdown": "1.0.*"

Run composer update to pull down the latest version of Laravel Markdown. 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',
        'Kindari\LaravelMarkdown\MarkdownServiceProvider',
    ...
)

Usage

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

return View::make('foobar');

The Versions

27/07 2013

dev-master

9999999-dev

Markdown Integration with Laravel's View system

  Sources   Download

WTFPL

The Requires

 

by William Cahill-Manley

laravel markdown

29/05 2013

v1.0.0

1.0.0.0

Markdown Integration with Laravel's View system

  Sources   Download

WTFPL

The Requires

 

by William Cahill-Manley

laravel markdown