Mark 3 symbols as combining accents (#2218)

This commit is contained in:
8LWXpg 2023-09-25 19:12:23 +08:00 committed by GitHub
parent 9ff9615208
commit 50b0318434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
})
}