Archived
1
0

try fixing wobble text

This commit is contained in:
Jeff Becker 2017-01-28 11:42:34 -05:00
parent 0ab6dca181
commit 9ec1c5c304

View File

@ -11,6 +11,9 @@ end
-- generate extra markup
function memeposting(body, prefix)
body = string.gsub(body, "|(.*)|", wobble_text)
local nums = 1
for nums > 0 do
body, nums = string.gsub(body, "|(.*)|", wobble_text, 1)
end
return body
end