* Add \>

* Update snapshot
This commit is contained in:
ylemkimon
2018-10-25 11:04:00 +09:00
committed by Kevin Barabash
parent 0b7b4db7fc
commit 4dd0e2cdca
6 changed files with 22 additions and 15 deletions

View File

@@ -713,6 +713,9 @@ exports[`A MathML builder special spaces render specially 1`] = `
<mtext>
&MediumSpace;
</mtext>
<mtext>
&MediumSpace;
</mtext>
<mtext>
&ThickSpace;
</mtext>
@@ -757,7 +760,7 @@ exports[`A MathML builder special spaces render specially 1`] = `
</mtext>
</mrow>
<annotation encoding="application/x-tex">
\\,\\thinspace\\:\\medspace\\;\\thickspace\\!\\negthinspace\\negmedspace\\negthickspace\\mkern1mu\\mkern3mu\\mkern4mu\\mkern5mu\\mkern-1mu\\mkern-3mu\\mkern-4mu\\mkern-5mu
\\,\\thinspace\\:\\&gt;\\medspace\\;\\thickspace\\!\\negthinspace\\negmedspace\\negthickspace\\mkern1mu\\mkern3mu\\mkern4mu\\mkern5mu\\mkern-1mu\\mkern-3mu\\mkern-4mu\\mkern-5mu
</annotation>
</semantics>
</math>

View File

@@ -752,7 +752,7 @@ describe("A text parser", function() {
});
it("should parse spacing functions", function() {
expect`a b\, \; \! \: ~ \thinspace \medspace \quad \ `.toBuild();
expect`a b\, \; \! \: \> ~ \thinspace \medspace \quad \ `.toBuild();
expect`\enspace \thickspace \qquad \space \nobreakspace`.toBuild();
});

View File

@@ -109,7 +109,7 @@ describe("A MathML builder", function() {
});
it('special spaces render specially', function() {
expect(getMathML(
"\\,\\thinspace\\:\\medspace\\;\\thickspace" +
"\\,\\thinspace\\:\\>\\medspace\\;\\thickspace" +
"\\!\\negthinspace\\negmedspace\\negthickspace" +
"\\mkern1mu\\mkern3mu\\mkern4mu\\mkern5mu" +
"\\mkern-1mu\\mkern-3mu\\mkern-4mu\\mkern-5mu")).toMatchSnapshot();