mathjslab
Version:
MathJSLab - An interpreter with language syntax like MATLAB®/Octave, ISBN 978-65-00-82338-7.
12 lines (11 loc) • 356 B
TypeScript
/**
* Parse identifier replacing greek names and others symbols by HTML entities
* @param id String containing greek names
* @returns String with greek names replaced by HTML entities
*/
declare function substSymbol(id: string): string;
export { substSymbol };
declare const _default: {
substSymbol: typeof substSymbol;
};
export default _default;