bhuvidya/laravel-parsedown-extra

Laravel Wrapper of Parsedown Extra.

v9.1 2022-04-29 11:00 UTC

This package is auto-updated.

Last update: 2024-02-29 03:41:32 UTC


README

This is based on the Laravel Parsedown package. I have merely done some adjustments to support Parsedown Extra.

Parsedown for Laravel

Build Status

Note I have now switched the semver versioning for my Laravel packages to "match" the latest supported Laravel version.

A Laravel wrapper of Parsedown Extra to extend its features. If you want to know more about Parsedown Extra alone check out the base repository.

Features

  • Blade Directive
  • Helper Function

Installation

Parsedown Extra for Laravel is available as a composer package. You can install it using the command below:

composer require "bhuvidya/laravel-parsedown-extra"

Configuration

If you're using Laravel +5.5 you don't need to follow the steps below. The package auto-discovery feature has been implemented and will take care of loading the service provider for you.

But if that's not your case you just need to add the service provider to your config/app.php:

return [
    // Other configurations above...

    'providers' => [
        // Other providers above...
        Bhuvidya\ParsedownExtra\Providers\ParsedownExtraServiceProvider::class,
        // Other providers below...
    ],

    // Other configurations below...
];

Usage

@parsedownextra('Hello _Parsedown_!')

or (using a helper approach)

{{ parsedownextra('Hello _Parsedown_!') }}

Any of the codes above will generate:

<p>Hello <em>Parsedown</em>!</p>

The helper can also be used with PHP throughout the project.

Lumen Support

As Laravel and Lumen share pretty much the same core the instructions below should be enough to set this package in yout Lumen project.

Enable Facades in Your Project

In your bootstrap/app.php ensure you have the following:

$app->withFacades();

Service Provider Registering

As Lumen does not support package auto-discovery you got to do it manually adding the code below in your bootstrap/app.php:

$app->register(Bhuvidya\ParsedownExtra\Providers\ParsedownServiceProvider::class);