aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Alessi <alessi@robertalessi.net>2016-11-15 11:42:54 +0100
committerRobert Alessi <alessi@robertalessi.net>2016-11-15 11:42:54 +0100
commit17e0b49d4a7e28efdffe4f209afdff3f5c580475 (patch)
treec9e518617b1a8fe6f6de2952f7949ea0024e4df2
parent4e9da7a6c82954e41f91cd9acb717fe0f933823f (diff)
downloadarabluatex-17e0b49d4a7e28efdffe4f209afdff3f5c580475.tar.gz
the Arabic comma did not work after \abraces{}
-rw-r--r--arabluatex_voc.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/arabluatex_voc.lua b/arabluatex_voc.lua
index 6819952..5dbc59f 100644
--- a/arabluatex_voc.lua
+++ b/arabluatex_voc.lua
@@ -680,7 +680,11 @@ punctuation = {
680 {a="%+%@%[", b="]"}, 680 {a="%+%@%[", b="]"},
681 {a="%-%@%[", b="["}, 681 {a="%-%@%[", b="["},
682 {a="%.", b="."}, 682 {a="%.", b="."},
683 {a="([^0-9])%,", b="%1،"}, 683 -- replaced with the next two rules to make the Arabic comma work
684 -- after \abraces{}
685-- {a="([^0-9])%,", b="%1،"},
686 {a="%,", b="،"},
687 {a="([%d])%،", b="%1,"},
684 {a="%?", b="؟"}, 688 {a="%?", b="؟"},
685 {a="%;", b="؛"}, 689 {a="%;", b="؛"},
686} 690}