Skip to content

Commit 124ab5f

Browse files
committed
Split Latin-1 Supplement into two ranges (mo and mi).
1 parent 5650c74 commit 124ab5f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ts/core/MmlTree/OperatorDictionary.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ export const MO = {
8181
*/
8282
export const RANGES: RangeDef[] = [
8383
[0x0020, 0x007F, TEXCLASS.REL, 'mo'], // Basic Latin
84-
[0x00A0, 0x024F, TEXCLASS.ORD, 'mi'], // Latin-1 Supplement, Latin Extended-A, Latin Extended-B
84+
[0x00A0, 0x00BF, TEXCLASS.ORD, 'mo'], // Latin-1 Supplement symbols
85+
[0x00C0, 0x024F, TEXCLASS.ORD, 'mi'], // Latin-1 Supplement, Latin Extended-A, Latin Extended-B
8586
[0x02B0, 0x036F, TEXCLASS.ORD, 'mo'], // Spacing modifier letters, Combining Diacritical Marks
8687
[0x0370, 0x1A20, TEXCLASS.ORD, 'mi'], // Greek and Coptic (through) Tai Tham
8788
[0x1AB0, 0x1AFF, TEXCLASS.ORD, 'mo'], // Combining Diacritical Marks Extended

0 commit comments

Comments
 (0)