Module:Demo
From Zoophilia Wiki
Documentation for this module may be created at Module:Demo/doc
local p = {}
function p.main(frame)
args = require('Module:Arguments').getArgs(frame, {
trim = false
})
local br = ''
for k = 1, (args.br or 1) do
br = br + '<br>'
end
return string.format('<pre%s>%s</pre>%s%s', args.style and string.format(" style='%s'", args.style) or '', args[1], br, args[1])
end
return p