From 872fa0b2bf5345c920d52e6afd02b5fe9b74a353 Mon Sep 17 00:00:00 2001 From: Michael Griebling Date: Tue, 17 Dec 2024 15:24:56 -0500 Subject: [PATCH] Update \cc and \CC definitions. --- Sources/SwiftMath/MathRender/MTMathAtomFactory.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/SwiftMath/MathRender/MTMathAtomFactory.swift b/Sources/SwiftMath/MathRender/MTMathAtomFactory.swift index 839a808..722e983 100755 --- a/Sources/SwiftMath/MathRender/MTMathAtomFactory.swift +++ b/Sources/SwiftMath/MathRender/MTMathAtomFactory.swift @@ -363,8 +363,8 @@ public class MTMathAtomFactory { "o" : MTMathAtom(type: .ordinary, value: "\u{00F8}"), "oe" : MTMathAtom(type: .ordinary, value: "\u{0153}"), "ss" : MTMathAtom(type: .ordinary, value: "\u{00DF}"), - "cc" : MTMathAtom(type: .ordinary, value: "ç"), - "CC" : MTMathAtom(type: .ordinary, value: "Ç"), + "cc" : MTMathAtom(type: .ordinary, value: "\u{00E7}"), + "CC" : MTMathAtom(type: .ordinary, value: "\u{00C7}"), "O" : MTMathAtom(type: .ordinary, value: "\u{00DB}"), "AE" : MTMathAtom(type: .ordinary, value: "\u{00C6}"), "OE" : MTMathAtom(type: .ordinary, value: "\u{0152}"),