mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
12 lines (11 loc) • 372 B
TypeScript
export interface UTF8ToLtXConverter {
convert(char: string): string;
}
/**
* 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;
}