Skip to content

Commit

Permalink
Fix Ø command.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgriebling committed Dec 18, 2024
1 parent 5c251ad commit 606f9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftMath/MathRender/MTMathAtomFactory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public class MTMathAtomFactory {
"ss" : MTMathAtom(type: .ordinary, value: "\u{00DF}"), // NEW ß
"cc" : MTMathAtom(type: .ordinary, value: "\u{00E7}"), // NEW ç
"CC" : MTMathAtom(type: .ordinary, value: "\u{00C7}"), // NEW Ç
"O" : MTMathAtom(type: .ordinary, value: "\u{00DB}"), // NEW Ø
"O" : MTMathAtom(type: .ordinary, value: "\u{00D8}"), // NEW Ø
"AE" : MTMathAtom(type: .ordinary, value: "\u{00C6}"), // NEW Æ
"OE" : MTMathAtom(type: .ordinary, value: "\u{0152}"), // NEW Œ
"|" : MTMathAtom(type: .ordinary, value: "\u{2016}"),
Expand Down

0 comments on commit 606f9be

Please sign in to comment.