View Single Post
Old 11-10-2020, 11:41 AM   #3220
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,506
Karma: 26047202
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Quick hotfix so that it actually works:

Code:
return function(html)
    html = html:gsub('<img[^>]+>', '')
    html = html:gsub('</span>%)', ')')
    html = html:gsub('</span>', '<br/>')
    html = html:gsub('<span>', '')
    return html
end
Also, minor CSS tweak because I hate indents:

Code:
blockquote { margin: 0 0 0 0.15em }
NiLuJe is offline   Reply With Quote