@qtikit/mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
14 lines (13 loc) • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MathMLElementToLaTexConverter = void 0;
var MathMLElementToLaTexConverter = /** @class */ (function () {
function MathMLElementToLaTexConverter(mathElement) {
this._mathmlElement = mathElement;
}
MathMLElementToLaTexConverter.prototype.convert = function () {
return 'a';
};
return MathMLElementToLaTexConverter;
}());
exports.MathMLElementToLaTexConverter = MathMLElementToLaTexConverter;