11 lines
No EOL
381 B
HTML
11 lines
No EOL
381 B
HTML
{% macro render_markdown(content) %}
|
|
<div class="markdown-content markdown-reading-view">
|
|
{{ content|github_style_admonition|markdown|safe }}
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
{% macro render_markdown_with_truncate(content, length=300) %}
|
|
<div class="markdown-content markdown-reading-view">
|
|
{{ content|github_style_admonition|markdown|truncate(length, true)|safe }}
|
|
</div>
|
|
{% endmacro %} |