laravel-markdown maintained by jeffersongoncalves

Laravel Markdown
A shared CommonMark renderer for Laravel with GitHub Flavored Markdown, optional heading permalinks, and server-side syntax highlighting on fenced code blocks. Highlighting is class-based (<span class="hl-…"> tokens via tempest/highlight's CssTheme) so the markup survives HTML sanitisation — you style the .hl-* classes in your own CSS.
The renderer is safe by default: raw HTML in the markdown source is escaped, so untrusted input cannot inject live markup such as <script>.
Requirements
This package requires PHP 8.4+. The floor is inherited from the syntax highlighter tempest/highlight, which requires PHP 8.4 from version 2.26 onward; the rest of the package would run on PHP 8.2/8.3, but the highlighter does not, so the package as a whole targets PHP 8.4.
Installation
You can install the package via composer:
composer require jeffersongoncalves/laravel-markdown
You can publish the config file with:
php artisan vendor:publish --tag="markdown-config"
This is the contents of the published config file:
return [
'html_input' => 'escape',
'allow_unsafe_links' => false,
'heading_permalink' => [
'symbol' => '#',
'html_class' => 'md-anchor',
],
];
Usage
use JeffersonGoncalves\Markdown\Markdown;
// Render GitHub Flavored Markdown to HTML
$html = Markdown::render('# Hello **world**');
// Enable heading permalink anchors (adds <a class="md-anchor"> to each heading)
$html = Markdown::render($readme, headingPermalinks: true);
Fenced code blocks are highlighted server-side and emit class-based tokens:
$html = Markdown::render(<<<'MD'
```php
echo 'hello';
```
MD);
// => <pre><code>…<span class="hl-keyword">echo</span>…</code></pre>
Add the matching .hl-* styles (and .md-anchor if you use heading permalinks) to your own CSS.
HTML safety
By default html_input is set to escape, so any raw HTML in the markdown source (including <script>) is escaped and rendered as visible text — the output is safe for untrusted input out of the box. Unsafe link protocols (javascript:, vbscript:, data:, file:) are also neutralised because allow_unsafe_links defaults to false.
If you render only trusted content (e.g. your own READMEs or curated article bodies) and need to keep its raw HTML, opt in by setting:
// config/markdown.php
'html_input' => 'allow',
[!WARNING] With
html_inputset toallow, raw HTML in the source is preserved and the output is UNSAFE for untrusted input. In that mode you MUST pass the output through an HTML sanitizer such as jeffersongoncalves/laravel-html-sanitizer before displaying it. Class-based highlight tokens are designed to survive sanitisation; inline-style highlighting would not.
You can also set html_input to strip to remove raw HTML entirely.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.