diff options
| author | TwoF1nger <140991913+TwoF1nger@users.noreply.github.com> | 2025-02-10 10:42:16 +0000 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2025-02-10 16:28:49 +0100 |
| commit | ab5e356d8121318df5ecff9733a501f9741ac55a (patch) | |
| tree | dc6945c641acdda350bfeed2f42873de4cc55bd0 | |
| parent | 88f88016e0f9f54edebaf8dfc565a1280338f1c2 (diff) | |
Add smart quotes for Bulgarian (#5807)
| -rw-r--r-- | crates/typst-library/src/text/smartquote.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/typst-library/src/text/smartquote.rs b/crates/typst-library/src/text/smartquote.rs index 2f89fe29..f457a637 100644 --- a/crates/typst-library/src/text/smartquote.rs +++ b/crates/typst-library/src/text/smartquote.rs @@ -251,6 +251,7 @@ impl<'s> SmartQuotes<'s> { "el" => ("‘", "’", "«", "»"), "he" => ("’", "’", "”", "”"), "hr" => ("‘", "’", "„", "”"), + "bg" => ("’", "’", "„", "“"), _ if lang.dir() == Dir::RTL => ("’", "‘", "”", "“"), _ => default, }; |
