UNPKG

@qtikit/mathml-to-latex

Version:

A JavaScript tool to convert mathml string to LaTeX string

9 lines (8 loc) 536 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mathMLElementToLaTeXConverter = void 0; var mathml_element_to_latex_converter_adapter_1 = require("../usecases/mathml-to-latex-convertion/mathml-element-to-latex-converter-adapter"); var mathMLElementToLaTeXConverter = function (mathMLElement) { return new mathml_element_to_latex_converter_adapter_1.MathMLElementToLatexConverterAdapter(mathMLElement).toLatexConverter(); }; exports.mathMLElementToLaTeXConverter = mathMLElementToLaTeXConverter;