Jump to content

Module:Sandbox/Wnt

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Wnt (talk | contribs) at 18:07, 21 March 2014 (This allows output...). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
-- hexdump = require("Module:Hex")._hexdump
local p = {}
local getArgs = require("Module:Arguments").getArgs
function p.main(frame)
	local args = getArgs(frame)
	local reflist1 = frame:preprocess("<references />")
	local unused2 =  frame:preprocess("<ref>two</ref>")
	local reflist2 = frame:preprocess("x<references />")
return reflist1 .. "X" .. reflist2 .. "|"
end
return p