Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

Commit

Permalink
Updated README regarding Laravel 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Indal committed Aug 18, 2016
1 parent ae486e8 commit 7726449
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Laravel-Markdown

**NOTE**: For usage with Laravel 5.3, please refer to the [1.1 branch](https://github.com/andreasindal/laravel-markdown/tree/1.1).

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.

This package utilizes the [Parsedown-package](http://parsedown.org/) by @erusev.
Expand All @@ -8,7 +10,7 @@ This package utilizes the [Parsedown-package](http://parsedown.org/) by @erusev.

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
composer require andreasindal/laravel-markdown:"1.0"

All you have to do is to reference the service provider under the `'providers'` array in your `config/app.php` file. If you want to use the facade as well, include a reference under the `'aliases'` array in the same file.

Expand Down Expand Up @@ -99,4 +101,4 @@ $html = $parser->parse('# Hello'); // <h1>Hello</h1>

## License

Licensed under MIT. For more information, see the [LICENSE-file](https://github.com/andreasindal/laravel-markdown/blob/master/LICENSE).
Licensed under MIT. For more information, see the [LICENSE-file](https://github.com/andreasindal/laravel-markdown/blob/master/LICENSE).

0 comments on commit 7726449

Please sign in to comment.