diff options
| author | nz366 <firewaxx@proton.me> | 2024-09-26 20:47:55 +0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-26 14:47:55 +0000 |
| commit | 820750ce21be96e5250bc71a099cf23f7257b943 (patch) | |
| tree | 9ba489db654c4f66506ce3c2d64b449960851a61 /tests/suite/model | |
| parent | e00e3e4fbfb9432061d176fb0a3e6b4bf2430fc6 (diff) | |
Add Bengali Numerals (#4997)
Co-authored-by: Laurenz <laurmaedje@gmail.com>
Diffstat (limited to 'tests/suite/model')
| -rw-r--r-- | tests/suite/model/numbering.typ | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/suite/model/numbering.typ b/tests/suite/model/numbering.typ index 93c9e1b3..d0cbe247 100644 --- a/tests/suite/model/numbering.typ +++ b/tests/suite/model/numbering.typ @@ -45,6 +45,11 @@ #t(pat: "\u{0967}", 10, "१०") #t(pat: "\u{0967}", 123456789, "१२३४५६७८९") +// Bengali. +#t(pat: "\u{09E7}", 1, "১") +#t(pat: "\u{09E7}", 10, "১০") +#t(pat: "\u{09E7}", 123456789, "১২৩৪৫৬৭৮৯") + // Circled number. #t(pat: "①", 1, "①") #t(pat: "①", 50, "㊿") |
