mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-08 12:07:06 +08:00
14 lines
397 B
Plaintext
14 lines
397 B
Plaintext
case theme.math.use
|
|
when 'mathjax'
|
|
if (theme.math.per_page && (['post','page'].includes(globalPageType))) || page.mathjax
|
|
include ./mathjax.pug
|
|
|
|
when 'katex'
|
|
if (theme.math.per_page && (['post','page'].includes(globalPageType))) || page.katex
|
|
include ./katex.pug
|
|
|
|
if theme.mermaid.enable
|
|
include ./mermaid.pug
|
|
|
|
if theme.chartjs.enable
|
|
include ./chartjs.pug |