html_to_markdown
ΒΆ
New in version 2.12: The html_to_markdown
filter was added in Twig 2.12.
The html_to_markdown
filter converts a block of HTML to Markdown:
{% apply html_to_markdown %}
<html>
<h1>Hello!</h1>
</html>
{% endapply %}
You can also use the filter on an entire template which you include
:
{{ include('some_template.html.twig')|html_to_markdown }}
Note
The html_to_markdown
filter is part of the MarkdownExtension
which
is not installed by default. Install it first:
$ composer req twig/markdown-extra
On Symfony projects, you can automatically enable it by installing the
twig/extra-bundle
:
$ composer req twig/extra-bundle
Or add the extension explicitly on the Twig environment:
use Twig\Extra\Markdown\MarkdownExtension;
$twig = new \Twig\Environment(...);
$twig->addExtension(new MarkdownExtension());
If you are not using Symfony, you must also register the extension runtime:
use Twig\Extra\Markdown\DefaultMarkdown;
use Twig\Extra\Markdown\MarkdownRuntime;
use Twig\RuntimeLoader\RuntimeLoaderInterface;
$twig->addRuntimeLoader(new class implements RuntimeLoaderInterface {
public function load($class) {
if (MarkdownRuntime::class === $class) {
return new MarkdownRuntime(new DefaultMarkdown());
}
}
});
html_to_markdown
is just a frontend; the actual conversion is done by one of
the following compatible libraries, from which you can choose:
- [erusev/parsedown](https://github.com/erusev/parsedown)
- [thephpleague/html-to-markdown](https://github.com/thephpleague/html-to-markdown)
- [michelf/php-markdown](https://github.com/michelf/php-markdown)
Depending on the library, you can also add some options by passing them as an argument
to the filter. Example for league/html-to-markdown
:
{% apply html_to_markdown({hard_break: false}) %}
<html>
<h1>Hello!</h1>
</html>
{% endapply %}