firefish/packages/client/src/scripts/preprocess.ts
2023-10-10 23:28:06 +09:00

27 lines
718 B
TypeScript

import * as mfm from "mfm-js";
import { defaultStore } from "@/store";
import { expandKaTeXMacro } from "@/scripts/katex-macro";
export default function preprocess(text: string): string {
if (defaultStore.state.enableCustomKaTeXMacro) {
const parsedKaTeXMacro =
localStorage.getItem("customKaTeXMacroParsed") ?? "{}";
const maxNumberOfExpansions = 200; // to prevent infinite expansion loops
const nodes = mfm.parse(text);
for (const node of nodes) {
if (node.type === "mathInline" || node.type === "mathBlock") {
node.props.formula = expandKaTeXMacro(
node.props.formula,
parsedKaTeXMacro,
maxNumberOfExpansions,
);
}
}
text = mfm.toString(nodes);
}
return text;
}