feature: add formula rander in the markdown (#611)

* feature: add formula rander in the markdown

* fixed the lint errors
This commit is contained in:
Willem Jiang
2025-10-11 23:05:09 +08:00
committed by GitHub
parent f80af8e132
commit 2a6455c436
3 changed files with 79 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
import { describe, it } from "node:test";
import assert from "node:assert/strict";
import katex from "katex";
import { katexOptions } from "../src/core/markdown/katex";
function render(expression: string) {
return katex.renderToString(expression, {
...katexOptions,
displayMode: true,
});
}
describe("markdown physics katex support", () => {
it("renders vector calculus operators", () => {
assert.doesNotThrow(() => {
render("\\curl{\\vect{B}} = \\mu_0 \\vect{J} + \\mu_0 \\varepsilon_0 \\pdv{\\vect{E}}{t}");
});
});
it("renders quantum mechanics bra-ket notation", () => {
const html = render("\\braket{\\psi}{\\phi}");
assert.ok(html.includes("⟨") && html.includes("⟩"));
});
it("renders vector magnitude formula with subscripts and square root", () => {
const html = render("(F_1) (F_2), (F=\\sqrt{F_1^2+F_2^2})");
assert.ok(html.includes("F"));
assert.ok(html.includes("₁") || html.includes("sub")); // subscript check
assert.ok(html.includes("√") || html.includes("sqrt")); // square root check
});
it("renders chemical equations via mhchem", () => {
assert.doesNotThrow(() => {
render("\\ce{H2O ->[\\Delta] H+ + OH-}");
});
});
});