diff options
-rw-r--r-- | arabluatex.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arabluatex.lua b/arabluatex.lua index 8644588..ffdc7c7 100644 --- a/arabluatex.lua +++ b/arabluatex.lua | |||
@@ -73,6 +73,13 @@ local function breakcmd(str) | |||
73 | body = string.sub(body, 2, -2) | 73 | body = string.sub(body, 2, -2) |
74 | return string.format("}\\%s{%s}\\arb{", tag, body) | 74 | return string.format("}\\%s{%s}\\arb{", tag, body) |
75 | end) | 75 | end) |
76 | -- \textcolor | ||
77 | str = string.gsub(str, "\\(textcolor.-)(%b{})(%b{})", | ||
78 | function(tag, bodycolor, bodytext) | ||
79 | bodycolor = string.sub(bodycolor, 2, -2) | ||
80 | bodytext = string.sub(bodytext, 2, -2) | ||
81 | return string.format("}\\%s{%s}{\\arb{%s}}\\arb{", tag, bodycolor, bodytext) | ||
82 | end) | ||
76 | -- Footnote | 83 | -- Footnote |
77 | str = string.gsub(str, "\\(Footnote.-)(%b{})", | 84 | str = string.gsub(str, "\\(Footnote.-)(%b{})", |
78 | function(tag, body) | 85 | function(tag, body) |