mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 18:40:53 +08:00
18 lines
475 B
Plaintext
18 lines
475 B
Plaintext
if theme.mathjax && theme.mathjax.enable
|
|
if theme.mathjax.per_page
|
|
if(!is_tag() && !is_category() && !is_archive() && !is_home())
|
|
include ./mathjax.pug
|
|
else
|
|
if page.mathjax
|
|
include ./mathjax.pug
|
|
|
|
if theme.katex && theme.katex.enable
|
|
if theme.katex.per_page
|
|
if(!is_tag() && !is_category() && !is_archive() && !is_home())
|
|
include ./katex.pug
|
|
else
|
|
if page.katex
|
|
include ./katex.pug
|
|
|
|
if theme.mermaid.enable
|
|
include ./mermaid.pug |