PHPackages                             buzzylab/laradown - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. buzzylab/laradown

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

buzzylab/laradown
=================

A New Markdown parser for Laravel built on parsedown

v0.2.1(5y ago)307.3k3[1 issues](https://github.com/buzzylab/laradown/issues)MITCSS

Since Jun 25Pushed 5y ago3 watchersCompare

[ Source](https://github.com/buzzylab/laradown)[ Packagist](https://packagist.org/packages/buzzylab/laradown)[ RSS](/packages/buzzylab-laradown/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (10)Dependencies (7)Versions (18)Used By (0)

Laradown
--------

[](#laradown)

[![Latest Stable Version](https://camo.githubusercontent.com/314cf26bcd3bcd26d1e0782669fcd1a5b800fada18d9b0ca40b29f30a387d3dc/68747470733a2f2f706f7365722e707567782e6f72672f62757a7a796c61622f6c617261646f776e2f76657273696f6e)](https://packagist.org/packages/buzzylab/laradown)[![Total Downloads](https://camo.githubusercontent.com/6875f753f055f5cb2618436f62121065e0d7b618b67fcea7aff4e0cbf7621d27/68747470733a2f2f706f7365722e707567782e6f72672f62757a7a796c61622f6c617261646f776e2f646f776e6c6f616473)](https://packagist.org/packages/buzzylab/laradown)[![Latest Unstable Version](https://camo.githubusercontent.com/55960c6f6f2144cee418ebdf497b963f8bbdbe06b1c6166d12c95241902ce89f/68747470733a2f2f706f7365722e707567782e6f72672f62757a7a796c61622f6c617261646f776e2f762f756e737461626c65)](//packagist.org/packages/buzzylab/laradown)[![License](https://camo.githubusercontent.com/f774a942f2f49e4d2315af9cf5079a7800ac3f248716436cea1ba4c4a93fcd13/68747470733a2f2f706f7365722e707567782e6f72672f62757a7a796c61622f6c617261646f776e2f6c6963656e7365)](https://packagist.org/packages/buzzylab/laradown)[![StyleCI](https://camo.githubusercontent.com/e8857a7a5f6b85bd2176dd2fd4e1465f35006d13d83c4a0c06749963d8530815/68747470733a2f2f7374796c6563692e696f2f7265706f732f36313932333938322f736869656c64)](https://styleci.io/repos/61923982)

A New `Markdown` parser for Laravel built on [Parsedown](https://github.com/erusev/parsedown) and [Parsedown Extra](https://github.com/erusev/parsedown-extra).

Installation
------------

[](#installation)

The best and easiest way to install this package is through [Composer](https://getcomposer.org/).

### Compatibility

[](#compatibility)

This package fully compatible with **[Laravel](https://laravel.com)** above `5.4`.

### Require Package

[](#require-package)

Open your application's `composer.json` file and add the following line to the `require` array:

```
"buzzylab/laradown": "~0.2"
```

> **Note:** Make sure that after the required changes your `composer.json` file is valid by running `composer validate`.

After installing the package, open your Laravel config file located at `config/app.php` and add the following service provider to the `$providers` array:

```
Buzzylab\Laradown\MarkdownServiceProvider::class,
```

> **Note:** Checkout Laravel's [Service Providers](https://laravel.com/docs/5.8/providers) and [Service Container](https://laravel.com/docs/5.8/container) documentation for further details.

And add the following to `$aliases`

```
'Markdown' => Buzzylab\Laradown\Facades\MarkdownFacade::class
```

Usage
-----

[](#usage)

```
