{% extends "_base.html" %} {% block page %}prose-page{% endblock page %} {% block lang -%} {%- if section.extra.lang %}{{section.extra.lang}}{% else %}{{section.lang}}{% endif -%} {%- endblock lang %} {% block title %}{{ section.title }}{% endblock title %} {% block desc %} {% if section.description %} {% set desc = section.description %} {% else %} {% set desc = config.description %} {% endif %} {%- if section.extra.lang %}{% set og_lang = section.extra.lang %}{% else %}{% set og_lang = section.lang %}{% endif -%} {{ }} {% endblock desc %} {% block head %} {% if config.markdown.highlighting.style == "class" %} {% endif %} {% set enable_math = section.extra.math if section.extra.math is defined else (config.extra.math if config.extra.math is defined else false) %} {% if enable_math %} {% endif %} {% endblock head %} {% block content %}
{{ }} {% include "_section_title.html" %}
{% set allow_copy = section.extra.code_copy if section.extra.code_copy is defined else (config.extra.code_copy if config.extra.code_copy is defined else false) %} {% if allow_copy %} {% set copy_icon = load_data(path="icon/copy.svg") %} {% set check_icon = load_data(path="icon/check.svg") %} {% endif %}
{{ section.content | safe }}
{% set show_reaction = section.extra.reaction if section.extra.reaction is defined else (config.extra.reaction if config.extra.reaction is defined else false) %} {% if show_reaction %}
{% endif %} {% set show_comment = section.extra.comment if section.extra.comment is defined else (config.extra.comment if config.extra.comment is defined else false) %} {% if show_comment %}
{% include "_giscus_script.html" %} {% endif %}
{% include "_footer.html" %}
{% endblock content %} {% block script %} {% set enable_mermaid = section.extra.mermaid if section.extra.mermaid is defined else (config.extra.mermaid if config.extra.mermaid is defined else false) %} {% if enable_mermaid %} {% endif %} {% endblock script %}