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)
16 lines (15 loc) • 469 B
TypeScript
import { ISmilesOptionsDef } from "./smiles-drawer/src/Drawer";
export interface ISmilesOptions extends ISmilesOptionsDef {
theme?: string;
stretch?: boolean;
scale?: number;
fontSize?: number;
disableColors?: boolean;
disableGradient?: boolean;
autoScale?: boolean;
isTesting?: boolean;
useCurrentColor?: boolean;
supportSvg1?: boolean;
}
declare const _default: (md: MarkdownIt, options: any) => void;
export default _default;