Skip to content

Instantly share code, notes, and snippets.

@trovster
Last active January 21, 2021 15:40
Show Gist options
  • Save trovster/87d5bc892efd49bd6259fea7c264e8cb to your computer and use it in GitHub Desktop.
Save trovster/87d5bc892efd49bd6259fea7c264e8cb to your computer and use it in GitHub Desktop.
<?php
return [
'html_input' => 'strip',
'allow_unsafe_links' => false,
];
<?php
use League\CommonMark\GithubFlavoredMarkdownConverter;
Str::macro('markdown', static function (string $content): string {
$converter = new GithubFlavoredMarkdownConverter(config('markdown')));
return $converter->convertToHtml($content);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment