summaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/src/text/quotes.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/src/text/quotes.rs b/library/src/text/quotes.rs
index 25d9cf88..d0798064 100644
--- a/library/src/text/quotes.rs
+++ b/library/src/text/quotes.rs
@@ -147,6 +147,7 @@ impl<'s> Quotes<'s> {
"es" if matches!(region, Some("ES") | None) => ("“", "”", "«", "»"),
"hu" | "pl" | "ro" => ("’", "’", "„", "”"),
"ru" | "no" | "nb" | "nn" | "ua" => ("’", "’", "«", "»"),
+ _ if lang.dir() == Dir::RTL => ("’", "‘", "”", "“"),
_ => return Self::default(),
};