1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00

add unescape

This commit is contained in:
lxsang 2020-06-18 00:32:16 +02:00
parent 2c95e7d4a1
commit e11a7069a4
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ function PostController:id(pid)
return self:notfound("No post found") return self:notfound("No post found")
end end
data = data[1] data = data[1]
data.rendered = data.rendered:gsub("%%", "%%%%") data.rendered = utils.unescape(data.rendered):gsub("%%", "%%%%")
local a, b = data.rendered:find("<[Hh]1[^>]*>") local a, b = data.rendered:find("<[Hh]1[^>]*>")
if a then if a then
local c, d = data.rendered:find("</[Hh]1>") local c, d = data.rendered:find("</[Hh]1>")

View File

@ -39,7 +39,7 @@
<div class = "blogentry"> <div class = "blogentry">
<div class = "shortcontent"> <div class = "shortcontent">
<?lua <?lua
local content = data.rendered:gsub("%%","%%%%") local content = utils.unescape(data.rendered):gsub("%%","%%%%")
local r, s = content:find("(<hr/?>)") local r, s = content:find("(<hr/?>)")
local title = nil local title = nil
if r then if r then