mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-05 19:28:39 +00:00
* Unicode accents * Lexer now looks for combining dicritical marks and adds them to the same character * Parser's `parseSymbol` now recognizes both combined and uncombined forms of Unicode accents, and builds accent objects just like the accent functions * Added CJK support to math mode (not just text mode) * Add invalid combining character test * Add MathML test * Add weak support for other Latin-1 characters This maintains backwards compatibility, but it uses the wrong font. There's a TODO to fix this later. Also refactor symbol code to use for..of * Update Unicode screenshot * Remove dot from accented i and j (in math mode) Also add dotless Unicode characters to support some accented i's and j's * Fix \imath, \jmath, \pounds, and more tests * Switch from for..of to .split().forEach() Save around 800 bytes in minified code * Fix split * normalize() detection * Convert back to vanilla for loops * Fix merge * Move normalize dependency to unicodeMake.js * Make unicodeSymbols into a lookup table instead of macros This is important for multi-accented characters. * Add comments about when to run * Move symbols definition into unicodeMake/Symbols.js * Remove CJK support in text mode * Add missing semicolon * Refactor unicodeAccents to its own file * Dotless i/j support in text mode * Remove excess character mappings * Fix Åå in math mode (still via Times) * Update to support #1030 * Add accented Greek letter support (for supported Greek symbols) * Update screenshot * remove Æ, æ, Ø, ø, and ß from math mode test
101 lines
3.4 KiB
JavaScript
101 lines
3.4 KiB
JavaScript
/* global expect: false */
|
|
/* global it: false */
|
|
/* global describe: false */
|
|
|
|
import buildMathML from "../src/buildMathML";
|
|
import parseTree from "../src/parseTree";
|
|
import Options from "../src/Options";
|
|
import Settings from "../src/Settings";
|
|
import Style from "../src/Style";
|
|
|
|
const defaultSettings = new Settings({});
|
|
|
|
const getMathML = function(expr, settings) {
|
|
const usedSettings = settings ? settings : defaultSettings;
|
|
|
|
let startStyle = Style.TEXT;
|
|
if (usedSettings.displayMode) {
|
|
startStyle = Style.DISPLAY;
|
|
}
|
|
|
|
// Setup the default options
|
|
const options = new Options({
|
|
style: startStyle,
|
|
maxSize: Infinity,
|
|
});
|
|
|
|
const built = buildMathML(parseTree(expr, usedSettings), expr, options);
|
|
|
|
// Strip off the surrounding <span>
|
|
return built.children[0].toMarkup();
|
|
};
|
|
|
|
describe("A MathML builder", function() {
|
|
it('should generate the right types of nodes', () => {
|
|
expect(getMathML("\\sin{x}+1\\;\\text{a}")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should make prime operators into <mo> nodes', () => {
|
|
expect(getMathML("f'")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should generate <mphantom> nodes for \\phantom', () => {
|
|
expect(getMathML("\\phantom{x}")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should use <munderover> for large operators', () => {
|
|
expect(getMathML("\\displaystyle\\sum_a^b")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should use <msupsub> for regular operators', () => {
|
|
expect(getMathML("\\textstyle\\sum_a^b")).toMatchSnapshot();
|
|
});
|
|
|
|
it("should output \\limsup_{x \\rightarrow \\infty} correctly in " +
|
|
"\\textstyle", () => {
|
|
const mathml = getMathML("\\limsup_{x \\rightarrow \\infty}");
|
|
expect(mathml).toMatchSnapshot();
|
|
});
|
|
|
|
it("should output \\limsup_{x \\rightarrow \\infty} in " +
|
|
"displaymode correctly", () => {
|
|
const settings = new Settings({displayMode: true});
|
|
const mathml = getMathML("\\limsup_{x \\rightarrow \\infty}", settings);
|
|
expect(mathml).toMatchSnapshot();
|
|
});
|
|
|
|
it('should use <mpadded> for raisebox', () => {
|
|
expect(getMathML("\\raisebox{0.25em}{b}")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should use <menclose> for colorbox', () => {
|
|
expect(getMathML("\\colorbox{red}{b}")).toMatchSnapshot();
|
|
});
|
|
|
|
it('should set href attribute for href appropriately', () => {
|
|
expect(getMathML("\\href{http://example.org}{\\alpha}")).toMatchSnapshot();
|
|
expect(getMathML("p \\Vdash \\beta \\href{http://example.org}{+ \\alpha} \\times \\gamma"));
|
|
});
|
|
|
|
it('should render mathchoice as if there was nothing', () => {
|
|
const cmd = "\\sum_{k = 0}^{\\infty} x^k";
|
|
expect(getMathML(`\\displaystyle\\mathchoice{${cmd}}{T}{S}{SS}`))
|
|
.toMatchSnapshot();
|
|
expect(getMathML(`\\mathchoice{D}{${cmd}}{S}{SS}`))
|
|
.toMatchSnapshot();
|
|
expect(getMathML(`x_{\\mathchoice{D}{T}{${cmd}}{SS}}`))
|
|
.toMatchSnapshot();
|
|
expect(getMathML(`x_{y_{\\mathchoice{D}{T}{S}{${cmd}}}}`))
|
|
.toMatchSnapshot();
|
|
});
|
|
|
|
it("should render boldsymbol with the correct mathvariants", () => {
|
|
expect(getMathML(`\\boldsymbol{Ax2k\\omega\\Omega\\imath+}`))
|
|
.toMatchSnapshot();
|
|
});
|
|
|
|
it('accents turn into <mover accent="true"> in MathML', function() {
|
|
expect(getMathML("über fiancée")).toMatchSnapshot();
|
|
});
|
|
});
|