diff options
| author | 8LWXpg <105704427+8LWXpg@users.noreply.github.com> | 2023-09-25 19:12:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-25 13:12:23 +0200 |
| commit | 50b031843410505a45da6f2792d9b87e3d5845a1 (patch) | |
| tree | dba243d98a9a4d65f25e9a47382e37f806c9f03c | |
| parent | 9ff961520849b3352a7f7266cceb3d1d9886d0c7 (diff) | |
Mark 3 symbols as combining accents (#2218)
| -rw-r--r-- | crates/typst/src/eval/symbol.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/typst/src/eval/symbol.rs b/crates/typst/src/eval/symbol.rs index ec5da51c..e74bec3f 100644 --- a/crates/typst/src/eval/symbol.rs +++ b/crates/typst/src/eval/symbol.rs @@ -153,6 +153,9 @@ impl Symbol { '\u{030c}' | 'ˇ' => '\u{030c}', '\u{20d6}' | '←' => '\u{20d6}', '\u{20d7}' | '→' | '⟶' => '\u{20d7}', + '\u{20d0}' | '↼' => '\u{20d0}', + '\u{20d1}' | '⇀' => '\u{20d1}', + '\u{20e1}' | '↔' | '⟷' => '\u{20e1}', _ => return None, }) } |
