mathpix-markdown-it
Version:
Mathpix-markdown-it is an open source implementation of the mathpix-markdown spec written in Typescript. It relies on the following open source libraries: MathJax v3 (to render math with SVGs), markdown-it (for standard Markdown parsing)
27 lines (26 loc) • 1.22 kB
TypeScript
import pluginLatexListsEnv from './md-latex-lists-env';
import pluginLatexCodeEnvs from "./md-latex-lstlisting-env";
/**
* configured custom mathjax plugin
*/
export declare const mdPluginMathJax: (options: any) => (md: any) => void;
/**
* configured custom tag plugin
*/
export declare const mdPluginText: () => (md: MarkdownIt) => void;
export declare const mdPluginHighlightCode: (md: any, opts: any) => void;
export declare const mdPluginTOC: (md: MarkdownIt, opts: any) => void;
export declare const mdPluginAnchor: {
(md: MarkdownIt, opts: any): void;
defaults: {
level: number;
};
};
export declare const mdPluginTableTabular: (md: MarkdownIt, options: any) => void;
export declare const mdPluginList: typeof pluginLatexListsEnv;
export declare const mdPluginChemistry: (md: MarkdownIt, options: any) => void;
export declare const mdPluginSvgToBase64: (md: MarkdownIt, options: any) => void;
export declare const mdPluginCollapsible: (md: any) => void;
export declare const mdSetPositionsAndHighlight: (md: MarkdownIt, options: any) => void;
export declare const mdLatexFootnotes: (md: MarkdownIt, options: any) => void;
export declare const mdPluginLatexCodeEnvs: typeof pluginLatexCodeEnvs;