diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-03-07 10:56:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-07 09:56:37 +0000 |
| commit | a483321aa08e435c159d19c0d559e2413c1272f9 (patch) | |
| tree | 3fcfae49b24bb8feaea0010d5f5ba2ac756fbb36 /docs/src/lib.rs | |
| parent | 5dc6ce0022ef5bc83464b2dfefb20d608168df20 (diff) | |
Remove dependency on unicode_names2 (#3570)
Diffstat (limited to 'docs/src/lib.rs')
| -rw-r--r-- | docs/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/src/lib.rs b/docs/src/lib.rs index 3856b1be..53221381 100644 --- a/docs/src/lib.rs +++ b/docs/src/lib.rs @@ -11,7 +11,6 @@ pub use self::model::*; use comemo::Prehashed; use ecow::{eco_format, EcoString}; -use heck::ToTitleCase; use once_cell::sync::Lazy; use serde::Deserialize; use serde_yaml as yaml; @@ -663,8 +662,6 @@ fn symbols_model(resolver: &dyn Resolver, group: &GroupData) -> SymbolsModel { math_shorthand: shorthand(typst::syntax::ast::Shorthand::MATH_LIST), codepoint: c as u32, accent: typst::symbols::Symbol::combining_accent(c).is_some(), - unicode_name: unicode_names2::name(c) - .map(|s| s.to_string().to_title_case().into()), alternates: symbol .variants() .filter(|(other, _)| other != &variant) |
