14 lines
456 B
HTML
14 lines
456 B
HTML
{% match content_block %}
|
|
{% when BlockTypes::HR %}
|
|
<hr />
|
|
{% when BlockTypes::PARAGRAPH { text } %}
|
|
<p>{{ text }}</p>
|
|
{% when BlockTypes::MARKDOWN { content } %}
|
|
{{ content|markdown }}
|
|
{% when BlockTypes::HTML { content } %}
|
|
{{ content|safe }}
|
|
{% when BlockTypes::HEADER { text, size } %}
|
|
<h{{size}}>{{text}}</h{{size}}>
|
|
{% else %}
|
|
<b>UNSUPPORTED block type here!</b>
|
|
{% endmatch %}
|