mathup
Version:
Easy MathML authoring tool with a quick to write syntax
10 lines (8 loc) • 308 B
JavaScript
/**
* @typedef {object} RenderOptions
* @property {boolean} [bare=false] - Whether to wrap the output in a <math>
* tag. Default is `false`
*/
export { default as toDOM } from "./to-dom.js";
export { default as toString } from "./to-string.js";
export { default as updateDOM } from "./update-dom.js";