Files
edx-platform/xmodule/capa/templates/mathstring.html
Irtaza Akram 99c6e901d9 Convert Problem Block Mako Templates to Django Templates (#37570)
* fix: convert mako to django templates for problem block

* fix: pylint issues
2025-12-09 19:29:06 +05:00

9 lines
229 B
HTML

<section class="math-string">
{% if isinline %}
<span>[mathjaxinline]{{ mathstr }}[/mathjaxinline]</span>
{% else %}
<span>[mathjax]{{ mathstr }}[/mathjax]</span>
{% endif %}
<span>{{ tail|safe }}</span>
</section>