| Install | |
|---|---|
composer require buzzylab/laradown |
|
| Latest Version: | v0.2.1 |
A New Markdown parser for Laravel built on Parsedown and Parsedown Extra.
The best and easiest way to install this package is through Composer.
This package fully compatible with Laravel above 5.4.
Open your application's composer.json file and add the following line to the require array:
"buzzylab/laradown": "~0.2"
Note: Make sure that after the required changes your
composer.jsonfile is valid by runningcomposer validate.
After installing the package, open your Laravel config file located at config/app.php and add the following service provider to the $providers array:
Buzzylab\Laradown\MarkdownServiceProvider::class,
Note: Checkout Laravel's Service Providers and Service Container documentation for further details.
And add the following to $aliases
'Markdown' => Buzzylab\Laradown\Facades\MarkdownFacade::class
<?php
echo Markdown::render(); // OR echo Markdown::convert();
That's all.
@markdown directive with parameter:@extends('layouts.master')
@section('content')
<div>
{{-- $content is markdown data --}}
@markdown($content)
</div>
@stop
@markdown with @endmarkdown as directive block:@extends('layouts.master')
@section('content')
<div>
@markdown
# Laradown Packag
@endmarkdown
</div>
@stop
@markdownstyle {{-- Get defaute style file --}}
@markdownstyle
{{-- Custom style file --}}
@markdownstyle($file)
markdown($markdown)Convert markdown content to html
markdown_style()Add style to converted html
This software is released under The MIT License (MIT).