From beb8c3ae4ee64d2e49e1d706261bdf63f89ab274 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sun, 16 Aug 2015 18:47:40 -0700 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78ad1fd..cccabba 100644 --- a/README.md +++ b/README.md @@ -16,19 +16,19 @@ composer require ccoley/laravel-markdown After updating composer, add the service provider to the `providers` array in `config/app.php` -```php +``` Coley\Markdown\MarkdownServiceProvider::class, ``` If you want to use the `Markdown` facade, you need to add it to the `aliases` array in `config/app.php` -```php +``` 'Markdown' => Coley\Markdown\MarkdownFacade::class ``` ## Example -```php +``` // Regular parsing. // Output: <p>Hello <em>Markdown</em>!</p> echo Markdown::text('Hello _Markdown_!'); -- GitLab