Skip to content

Commit 3263be3

Browse files
authored
fix(math): Erroneous capital H and I in fraktur variant (#2183)
1 parent d1ed71e commit 3263be3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/math/unicode-mathvariants.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ local mathScriptConversionTable = {
7777
[scriptType.fraktur] = function (codepoint)
7878
-- MathML Core "fraktur" (annex C.5)
7979
return codepoint == 0x43 and 0x212D -- C
80-
or codepoint == 0x48 and 0x210B -- H
81-
or codepoint == 0x49 and 0x2110 -- I
80+
or codepoint == 0x48 and 0x210C -- H
81+
or codepoint == 0x49 and 0x2111 -- I
8282
or codepoint == 0x52 and 0x211C -- R
8383
or codepoint == 0x5A and 0x2128 -- Z
8484
or codepoint + 0x1D504 - 0x41

0 commit comments

Comments
 (0)