Quiz_dashboard/src/utils/convertMathMLToLaTeX.ts
karimaldeen d603736a16 math
2024-09-23 15:12:24 +03:00

9 lines
229 B
TypeScript

import { MathMLToLaTeX } from 'mathml-to-latex';
export function convertMathMLToLaTeX(mathml: string): string {
console.log(MathMLToLaTeX.convert(mathml));
console.log(mathml);
return MathMLToLaTeX.convert(mathml);
}