@pie-framework/mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string. This is a forked repo.
10 lines (9 loc) • 350 B
TypeScript
import { UTF8ToLtXConverter } from 'data/protocols';
/**
* This class is used to convert some accents and special characters from utf-8 to latex math commands
*/
export declare class HashUTF8ToLtXConverter implements UTF8ToLtXConverter {
convert(char: string): string;
private convertAccentCharToLtX;
private convertSpecialCharToLtX;
}