mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 10:56:38 +00:00
38 lines
492 B
Plaintext
38 lines
492 B
Plaintext
--TEST--
|
|
"html_to_markdown" filter
|
|
--TEMPLATE--
|
|
{% apply html_to_markdown %}
|
|
<html>
|
|
<h1>Hello</h1>
|
|
<p><b><span>Great!</span></b></p>
|
|
</html>
|
|
{% endapply %}
|
|
|
|
|
|
{% apply html_to_markdown({hard_break: false}) %}
|
|
<html>Great<br>Break</html>
|
|
{% endapply %}
|
|
|
|
|
|
{{ include('html')|html_to_markdown }}
|
|
--TEMPLATE(html)--
|
|
<html>
|
|
<h1>Hello</h1>
|
|
<p><b>Great!</b></p>
|
|
</html>
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
Hello
|
|
=====
|
|
|
|
**Great!**
|
|
|
|
Great
|
|
Break
|
|
|
|
Hello
|
|
=====
|
|
|
|
**Great!**
|