quartz-research-note/quartz/plugins/transformers/latex.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-05-30 15:02:20 +00:00
import remarkMath from "remark-math"
2023-07-23 00:27:41 +00:00
import rehypeKatex from "rehype-katex"
import rehypeMathjax from "rehype-mathjax/svg.js"
2023-05-30 15:02:20 +00:00
import { QuartzTransformerPlugin } from "../types"
2023-07-10 02:32:24 +00:00
interface Options {
2023-07-23 00:27:41 +00:00
renderEngine: "katex" | "mathjax"
2023-07-10 02:32:24 +00:00
}
export const Latex: QuartzTransformerPlugin<Options> = (opts?: Options) => {
2023-07-23 00:27:41 +00:00
const engine = opts?.renderEngine ?? "katex"
2023-07-10 02:32:24 +00:00
return {
name: "Latex",
markdownPlugins() {
return [remarkMath]
},
htmlPlugins() {
2023-07-23 00:27:41 +00:00
return [engine === "katex" ? [rehypeKatex, { output: "html" }] : [rehypeMathjax]]
2023-07-10 02:32:24 +00:00
},
externalResources() {
2023-07-23 00:27:41 +00:00
return engine === "katex"
2023-07-10 02:32:24 +00:00
? {
2023-07-23 00:27:41 +00:00
css: [
// base css
"https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css",
],
js: [
{
// fix copy behaviour: https://github.com/KaTeX/KaTeX/blob/main/contrib/copy-tex/README.md
src: "https://cdn.jsdelivr.net/npm/katex@0.16.7/dist/contrib/copy-tex.min.js",
loadTime: "afterDOMReady",
contentType: "external",
},
],
}
2023-07-10 02:32:24 +00:00
: {}
2023-07-23 00:27:41 +00:00
},
2023-05-30 15:02:20 +00:00
}
2023-07-10 02:32:24 +00:00
}