Skip to content

Commit

Permalink
fix(math): Erroneous capital H and I in fraktur variant (#2183)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omikhleia authored Nov 30, 2024
1 parent d1ed71e commit 3263be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/math/unicode-mathvariants.lua
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ local mathScriptConversionTable = {
[scriptType.fraktur] = function (codepoint)
-- MathML Core "fraktur" (annex C.5)
return codepoint == 0x43 and 0x212D -- C
or codepoint == 0x48 and 0x210B -- H
or codepoint == 0x49 and 0x2110 -- I
or codepoint == 0x48 and 0x210C -- H
or codepoint == 0x49 and 0x2111 -- I
or codepoint == 0x52 and 0x211C -- R
or codepoint == 0x5A and 0x2128 -- Z
or codepoint + 0x1D504 - 0x41
Expand Down

0 comments on commit 3263be3

Please sign in to comment.