mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-18 18:33:42 +00:00
9 lines
572 B
Plaintext
9 lines
572 B
Plaintext
{%- set katex_uri = theme.vendors.katex or '//cdn.jsdelivr.net/npm/katex@0/dist/katex.min.css' %}
|
|
<link rel="stylesheet" href="{{ url_for(katex_uri) }}">
|
|
{%- if theme.math.katex.copy_tex %}
|
|
{%- set copy_tex_js_uri = theme.vendors.copy_tex_js or '//cdn.jsdelivr.net/npm/katex@0/dist/contrib/copy-tex.min.js' %}
|
|
{%- set copy_tex_css_uri = theme.vendors.copy_tex_css or '//cdn.jsdelivr.net/npm/katex@0/dist/contrib/copy-tex.min.css' %}
|
|
<script src="{{ url_for(copy_tex_js_uri) }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for(copy_tex_css_uri) }}">
|
|
{%- endif %}
|