35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{% for feature in feature_flags %}
|
|
|
|
{# KATEX #}
|
|
{% if feature == "katex" %}
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async></script>
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']], displayMath: [ ['$$','$$'], ['\[','\]'] ]}});
|
|
</script>
|
|
{% endif %}
|
|
|
|
{# Flags #}
|
|
{% if feature == "flags" %}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/6.4.3/css/flag-icons.min.css"
|
|
integrity="sha512-uvXdJud8WaOlQFjlz9B15Yy2Au/bMAvz79F7Xa6OakCl2jvQPdHD0hb3dEqZRdSwG4/sknePXlE7GiarwA/9Wg=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
{% endif %}
|
|
|
|
{# Twitter embed #}
|
|
{% if feature == "twitter" %}
|
|
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
{% endif %}
|
|
|
|
{# Mermaid #}
|
|
{% if feature == "mermaid" or feature == "graphviz" %}
|
|
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
|
{% endif %}
|
|
|
|
{# Font Awesome #}
|
|
{% if feature == "fontawesome" %}
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
|
|
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
|
|
crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
{% endif %}
|
|
|
|
{% endfor %} |