dsh-math-render
Verified@ch4acko3/dsh-math-render · v0.1.1 · MIT · Web UI
KaTeX MathML rendering service for DeepSeek Harness Web plugins
Install
dsh plugin add @ch4acko3/dsh-math-render Confirm the layer applied with dsh --profile default --dump-config — see the install guide.
Source
Published to npm without a public repository. Inspect the package contents before installing.
Tags
Readme
@ch4acko3/dsh-math-render
A browser-side Cordis service that renders TeX expressions as native MathML with KaTeX.
export const inject = ['mathRenderer']
export function apply(ctx) {
const result = ctx.mathRenderer.render({
source: String.raw`e^{i\pi} + 1 = 0`,
displayMode: true,
})
console.log(result.html)
}
KaTeX runs with trusted commands disabled and emits native MathML, so consumers do not need a stylesheet or bundled font files. The service provides rendering only and does not ship an editor or ChatView card.