Laravel 5.5 package, this package is a wrapper around erusev/parsedown for Laravel
lkeio/laraparse is a Laravel package for laravel 5.5 package, this package is a wrapper around erusev/parsedown for laravel.
It currently has 0 GitHub stars and 29 downloads on Packagist (latest version v1.2.0).
Install it with composer require lkeio/laraparse.
Discover more Laravel packages by lkeio
or browse all Laravel packages to compare alternatives.
Last updated
This package is a wrapper around erusev/parsedown for Laravel. Parsedown is a Markdown syntax Parser.
Laravel | Laraparse :---------|:---------- 5.5.x | 1.2.x 5.6.x | 1.2.x
composer require lkeio/laraparse
public function index()
{
// Insert Here your Markdown or Read it from your DB
$text = '# MarkDown Syntax';
return view('index', compact('text'));
}
@laraparse($text)
On the root Package directory run :
./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/LaraparseTests
I use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the MIT License - see the LICENSE file for details