Quote:
Originally Posted by NiLuJe
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 }
|
I'll use this and compare. Thanks!