Laravel-Markdown
Laravel-Markdown copied to clipboard
A CommonMark wrapper for Laravel
If someone wants to add custom `slug_normalizer` Example : ``` class CustomMarkdownNormalizer implements TextNormalizerInterface { use Resumeable; public function normalize(string $text, $context = null): string { // Use Laravel's Str::slug...
Hey folks, first of all thanks for this lib. When using a custom extension like: ``` class OpenLinksInNewWindow { public function __invoke(DocumentParsedEvent $e): void { $walker = $e->getDocument()->walker(); while ($event...