Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clone1018/markdown-blade
Markdown compiler for Blade
https://github.com/clone1018/markdown-blade
Last synced: about 1 month ago
JSON representation
Markdown compiler for Blade
- Host: GitHub
- URL: https://github.com/clone1018/markdown-blade
- Owner: clone1018
- Created: 2013-11-07T15:46:45.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-24T02:26:12.000Z (over 10 years ago)
- Last Synced: 2024-04-14T18:45:52.934Z (9 months ago)
- Language: PHP
- Size: 141 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Markdown Blade Parser
Based completely on https://github.com/Kindari/laravel-markdown/pull/2## Installation
Add `axxim/markdown-blade` to `composer.json`.
"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.
'providers' => array(
...
'Illuminate\View\ViewServiceProvider',
'Axxim\MarkdownBlade\MarkdownBladeServiceProvider',
...
)## Usage
Create a view file named foobar.md.blade.php then use it like normal:
return View::make('foobar');