This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2017-01-28 10:39:58 -05:00
|
|
|
|
|
|
|
|
-- simple replacements demo
|
|
|
|
|
|
2017-01-28 11:29:57 -05:00
|
|
|
function span_text(class, str)
|
|
|
|
|
return string.format("<div class='%s'>%s</div>", class, str)
|
2017-01-28 10:39:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function wobble_text(str)
|
|
|
|
|
return span_text("wobble", str)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- generate extra markup
|
2017-01-28 10:47:24 -05:00
|
|
|
function memeposting(body, prefix)
|
2017-01-28 11:44:33 -05:00
|
|
|
body = string.gsub(body, "|(.+)|", wobble_text)
|
2017-01-28 10:39:58 -05:00
|
|
|
return body
|
|
|
|
|
end
|