| 1 | import remarkGfm from "remark-gfm"; |
| 2 | import remarkMath from "remark-math"; |
| 3 | import { remarkMathPolicy } from "./remarkMathPolicy"; |
| 4 | import { remarkLocalPathLinks } from "../lib/localPathLinks"; |
| 5 | |
| 6 | // One shared parser policy keeps live Markdown and session exports identical. |
| 7 | export const reasonixRemarkPlugins = [remarkGfm, remarkMath, remarkMathPolicy, remarkLocalPathLinks]; |
| 8 | export { reasonixRehypePlugins } from "./rehypeReasonixKatex"; |
| 9 |