-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
like so ( renderer.lua ):
`local escape_tags_repl = {
["%"] = "%%",
["^"] = "%^",
["$"] = "%$",
["("] = "%(",
[")"] = "%)",
["."] = "%.",
["["] = "%[",
["]"] = "%]",
[""] = "%",
["+"] = "%+",
["-"] = "%-",
["?"] = "%?"
}
local function escape_tags(tags)
--[[ instead of
local result = {
string_gsub(tags[1], "%%", "%%%%").."%s*",
"%s*"..string_gsub(tags[2], "%%", "%%%%"),
}
]]
local delim1 = string_gsub( tags[1], "[%%%^%$%(%)%.%[%]%%+%-%?]", escape_tags_repl ).."%s"
local delim2 = "%s*"..string_gsub( tags[2], "[%%%^%$%(%)%.%[%]%*%+%-%?]", escape_tags_repl )
return { delim1, delim2 }
end
`
Metadata
Metadata
Assignees
Labels
No labels