twigphp / Twig

Twig, the flexible, fast, and secure template language for PHP
https://twig.symfony.com/
BSD 3-Clause "New" or "Revised" License
8.1k stars 1.24k forks source link

markdown_to_html Strikethrough is not working #3995

Closed choarau-craft closed 6 months ago

choarau-craft commented 6 months ago

Hello.

When trying to render a ~~Strikethrough~~, it's rendered as ~~Strikethrough~~ instead of <strike>Strikethrough</strike>

I'm using latest version with symfony 6.4

sstok commented 6 months ago

https://twig.symfony.com/doc/3.x/filters/markdown_to_html.html

This depends on which Markdown library is used, Twig itself doesn't provide markdown rendering. You need to enable this markdown extension https://commonmark.thephpleague.com/2.4/extensions/strikethrough/ 👍🏼