UNPKG

myst-parser

Version:
10 lines (9 loc) 341 B
import { dollarmathPlugin } from 'markdown-it-dollarmath'; import { amsmathPlugin } from 'markdown-it-amsmath'; export function plugin(md, options) { const opts = options === true ? { amsmath: true, dollarmath: true } : options; if (opts?.dollarmath) dollarmathPlugin(md); if (opts?.amsmath) amsmathPlugin(md); }