diff options
| author | Malo <57839069+MDLC01@users.noreply.github.com> | 2024-03-19 10:35:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-19 09:35:26 +0000 |
| commit | 65ae369f2c56644543afd3d7de8d4c87e29296ee (patch) | |
| tree | a4524a8ce14808d46224a2472ae68f80575b38c1 | |
| parent | e6f7cc126c8c51dcaae7836775be97dd7a692b13 (diff) | |
Add stroked variants of suits (#3612)
| -rw-r--r-- | crates/typst/src/symbols/sym.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs index f472b391..f5f94d90 100644 --- a/crates/typst/src/symbols/sym.rs +++ b/crates/typst/src/symbols/sym.rs @@ -486,7 +486,16 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { refmark: '※', servicemark: '℠', maltese: '✠', - suit: [club: '♣', diamond: '♦', heart: '♥', spade: '♠'], + suit: [ + club.filled: '♣', + club.stroked: '♧', + diamond.filled: '♦', + diamond.stroked: '♢', + heart.filled: '♥', + heart.stroked: '♡', + spade.filled: '♠', + spade.stroked: '♤', + ], // Shapes. bullet: '•', |
