p3k / blade-markdown-directive
0.10.0
2023-02-17 22:14 UTC
Requires
- php: >7.4
- cebe/markdown: ^1.2
- laravel/framework: ^10.0
README
This adds a Laravel Blade directive to render the enclosed text as Markdown.
Installation
First require this project using Composer:
composer require p3k/blade-markdown-directive
Add the following to your config/app.php
file in the providers
section:
p3k\MarkdownServiceProvider::class,
Usage
Now in any .blade.php
file, you can use the @markdown
directive to render Markdown.
<div>
@markdown($description)
</div>