Download the PHP package mkveksas/laravel-markdown without Composer
On this page you can find all versions of the php package mkveksas/laravel-markdown. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mkveksas/laravel-markdown
More information about mkveksas/laravel-markdown
Files in mkveksas/laravel-markdown
Package laravel-markdown
Short Description Simple Blade directive for markdown parsing.
License MIT
Informations about the package laravel-markdown
Laravel-Markdown
A small, lightweight and easy-to-use Laravel package for handling markdown. It comes with a facade, a helper function and a Blade directive to make life easier for you.
Laravel version | Laravel-Markdown version |
---|---|
5.7 | 3.0.1 |
5.6 | 3.0 |
5.5 | 2.0 |
5.3, 5.4 | 1.1 |
5.2 | 1.0 |
Installation
To install it, simply pull it down with Composer. Run the php artisan vendor:publish
command to publish the configuration file.
composer require andreasindal/laravel-markdown:"3.0.1"
Laravel 5.5 and above use Package Auto-Discovery, so you do not have to manually add the MarkdownServiceProvider.
Usage
Blade-directive
The markdown parser may be used in your Blade templates by using the @markdown
directive.
You can also use a block-style syntax:
Facade
If you registered the Markdown facade as shown above, you can easily parse markdown using it.
Helper-functions
Of course, you could also resolve the parser from the service container and use it yourself.
Drivers (NEW!)
Laravel-Markdown allows you to add custom markdown drivers. In order to use a custom markdown driver, you need to create a class that implements the Indal\Markdown\Drivers\MarkdownDriver
interface. The interface contains two methods: text
and line
. text
is used to convert a block of markdown to HTML, while line
is used to convert a single line.
Laravel-Markdown ships with a ParsedownDriver
using the Parsedown-package by @erusev.
Credits
- Mohamed Said (@themsaid)
License
Licensed under MIT. For more information, see the LICENSE-file.