From 5ccc2dcbba3bfeca2d9edc39209d43d217eb2a80 Mon Sep 17 00:00:00 2001
From: Sohum <31165513+ssmendon@users.noreply.github.com>
Date: Tue, 03 Dec 2024 09:52:51 +0000
Subject: [PATCH] fix(head): update open-graph width and height protocol per ogp (#1512)
---
quartz/plugins/transformers/latex.ts | 85 +++++++++++++++++++++++++++++-------------
1 files changed, 59 insertions(+), 26 deletions(-)
diff --git a/quartz/plugins/transformers/latex.ts b/quartz/plugins/transformers/latex.ts
index f4155f6..26913ba 100644
--- a/quartz/plugins/transformers/latex.ts
+++ b/quartz/plugins/transformers/latex.ts
@@ -1,34 +1,67 @@
-import { PluggableList } from "unified"
import remarkMath from "remark-math"
-import rehypeKatex from 'rehype-katex'
-import { StaticResources } from "../../resources"
+import rehypeKatex from "rehype-katex"
+import rehypeMathjax from "rehype-mathjax/svg"
+//@ts-ignore
+import rehypeTypst from "@myriaddreamin/rehype-typst"
import { QuartzTransformerPlugin } from "../types"
+import { KatexOptions } from "katex"
+import { Options as MathjaxOptions } from "rehype-mathjax/svg"
+//@ts-ignore
+import { Options as TypstOptions } from "@myriaddreamin/rehype-typst"
-export class Katex extends QuartzTransformerPlugin {
- name = "Katex"
- markdownPlugins(): PluggableList {
- return [remarkMath]
- }
+interface Options {
+ renderEngine: "katex" | "mathjax" | "typst"
+ customMacros: MacroType
+ katexOptions: Omit<KatexOptions, "macros" | "output">
+ mathJaxOptions: Omit<MathjaxOptions, "macros">
+ typstOptions: TypstOptions
+}
- htmlPlugins(): PluggableList {
- return [
- [rehypeKatex, {
- output: 'html',
- }]
- ]
- }
+interface MacroType {
+ [key: string]: string
+}
- externalResources: Partial<StaticResources> = {
- 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"
+export const Latex: QuartzTransformerPlugin<Partial<Options>> = (opts) => {
+ const engine = opts?.renderEngine ?? "katex"
+ const macros = opts?.customMacros ?? {}
+ return {
+ name: "Latex",
+ markdownPlugins() {
+ return [remarkMath]
+ },
+ htmlPlugins() {
+ switch (engine) {
+ case "katex": {
+ return [[rehypeKatex, { output: "html", macros, ...(opts?.katexOptions ?? {}) }]]
+ }
+ case "typst": {
+ return [[rehypeTypst, opts?.typstOptions ?? {}]]
+ }
+ case "mathjax": {
+ return [[rehypeMathjax, { macros, ...(opts?.mathJaxOptions ?? {}) }]]
+ }
+ default: {
+ return [[rehypeMathjax, { macros, ...(opts?.mathJaxOptions ?? {}) }]]
+ }
}
- ]
+ },
+ externalResources() {
+ switch (engine) {
+ case "katex":
+ return {
+ css: [{ content: "https://cdn.jsdelivr.net/npm/katex@0.16.11/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.11/dist/contrib/copy-tex.min.js",
+ loadTime: "afterDOMReady",
+ contentType: "external",
+ },
+ ],
+ }
+ default:
+ return { css: [], js: [] }
+ }
+ },
}
}
--
Gitblit v1.10.0