LaravelPackages.net
Acme Inc.
Toggle sidebar
lkeio/laraparse

Laravel 5.5 package, this package is a wrapper around erusev/parsedown for Laravel

29
0
v1.2.0
About lkeio/laraparse

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

Laraparse

Build Status StyleCI GitHub license

This package is a wrapper around erusev/parsedown for Laravel. Parsedown is a Markdown syntax Parser.

Version Compatibility

Laravel | Laraparse :---------|:---------- 5.5.x | 1.2.x 5.6.x | 1.2.x

Installing

composer require lkeio/laraparse

Usage

  • On your Controller

    public function index()
    {
     // Insert Here your Markdown or Read it from your DB
        $text = '# MarkDown Syntax';
        return view('index', compact('text'));
    }

  • On your View

@laraparse($text)

Tests

On the root Package directory run :

./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/LaraparseTests

Versioning

I use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Larbi Kamal Elguerch - All projects - lkeio

License

This project is licensed under the MIT License - see the LICENSE file for details

Comments