Module:Demo: Difference between revisions
From Zoophilia Wiki
Jump to navigationJump to search
meta>Codehydro it works! |
meta>Codehydro No edit summary |
||
Line 9: | Line 9: | ||
br = br .. '<br>' | br = br .. '<br>' | ||
end | end | ||
return string.format(' | return string.format('<pre%s>%s</pre>%s%s', frame.args.style and string.format(" style='%s'", frame.args.style) or '', code, br, template) | ||
end | end | ||
return p | return p |
Revision as of 17:57, 31 December 2014
Documentation for this module may be created at Module:Demo/doc
local p = {}
function p.main(frame)
frame = frame:getParent() or frame
local code = mw.text.unstripNoWiki(frame.args[1])
local template = frame:preprocess(mw.text.unstripNoWiki(frame.args[1]))
local br = ''
for k = 1, (frame.args.br or 1) do
br = br .. '<br>'
end
return string.format('<pre%s>%s</pre>%s%s', frame.args.style and string.format(" style='%s'", frame.args.style) or '', code, br, template)
end
return p