Specify the standard smart quotes for Arabic

The alternative is the default for RTL languages.
This commit is contained in:
zefr0x 2025-07-17 10:37:06 +03:00
parent 5661c20580
commit 1222ab5818

View File

@ -264,6 +264,7 @@ impl<'s> SmartQuotes<'s> {
"he" => ("", "", "", ""),
"hr" => ("", "", "", ""),
"bg" => ("", "", "", ""),
"ar" if !alternative => ("", "", "«", "»"),
_ if lang.dir() == Dir::RTL => ("", "", "", ""),
_ => default,
};