diff options
| author | ssotoen <68116836+ssotoen@users.noreply.github.com> | 2024-09-02 14:39:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-02 12:39:44 +0000 |
| commit | 89521c2066c8a8919da6f90f427edb663de05a18 (patch) | |
| tree | 36d0774a800b51bc39dc6478f41cf55696a507bb | |
| parent | e6cdcc53f3ba4dc1a0375f09249f3a09ea177cd4 (diff) | |
Add two-em and three-em dash symbols (#4874)
| -rw-r--r-- | crates/typst/src/symbols/sym.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs index 16c4df72..3261fa89 100644 --- a/crates/typst/src/symbols/sym.rs +++ b/crates/typst/src/symbols/sym.rs @@ -100,6 +100,8 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { dash: [ #[call(crate::math::accent::dash)] en: '–', em: '—', + em.two: '\u{2e3a}', + em.three: '\u{2e3b}', fig: '‒', wave: '〜', colon: '∹', |
