Archived
1
0

more escapes

This commit is contained in:
Jeff Becker 2017-01-29 10:00:51 -05:00
parent 6e5c34ebdd
commit 3d195510ba

View File

@ -23,6 +23,7 @@ function pre_text(str)
str = str:gsub("%)", ")")
str = str:gsub("%[", "[")
str = str:gsub("\\", "\")
str = str:gsub("/", "/")
str = str:gsub("%]", "]")
return span_text("code", str:gsub("%|", "|"))
end