Archived
1
0

add example lua stuff

This commit is contained in:
Jeff Becker
2017-01-28 10:39:58 -05:00
parent a3ed5a9d91
commit 0e51b675c2
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
-- simple replacements demo
function span_text(str, class)
return string.format("<span class='%s'>%s</span>", class, str)
end
function wobble_text(str)
return span_text("wobble", str)
end
-- generate extra markup
function memeposting(prefix, body)
body = string.gsub(body, "<(%w+)>", wobble_text)
return body
end