aboutsummaryrefslogtreecommitdiff
path: root/arabluatex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'arabluatex.lua')
-rw-r--r--arabluatex.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/arabluatex.lua b/arabluatex.lua
index 67c6cec..b87f2dc 100644
--- a/arabluatex.lua
+++ b/arabluatex.lua
@@ -675,7 +675,11 @@ local function processarbtoutf(str)
675 str = "\\begin{arabexport}"..str 675 str = "\\begin{arabexport}"..str
676 str = string.gsub(str, "(\\prname)%s?(%b{})", function(tag, body) 676 str = string.gsub(str, "(\\prname)%s?(%b{})", function(tag, body)
677 body = string.sub(body, 2, -2) 677 body = string.sub(body, 2, -2)
678 return string.format("%s{\\arb[trans]{\\uc{%s}}}", tag, body) 678 if string.find(body, "\\uc%s?%b{}") then
679 return string.format("%s{%s}", tag, body)
680 else
681 return string.format("%s{\\arb[trans]{\\uc{%s}}}", tag, body)
682 end
679 end) 683 end)
680 str = string.gsub(str, "(\\begin%s?{arab})(%b[])", function(tag, body) 684 str = string.gsub(str, "(\\begin%s?{arab})(%b[])", function(tag, body)
681 if string.find(body, "trans") then 685 if string.find(body, "trans") then