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 21:51, 21 March 2014 (Caching issue seems to affect just the strip marker, not any frame:preprocess()). 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 a = frame:preprocess("# Delaware\n")
	local b = frame:preprocess("# Pennsylvania\n")
	local c =  frame:preprocess("# New York\n")
	local d = frame:preprocess("# Pennsylvania\n")
        local e = frame:preprocess("# Delaware\n")
return a .. b .. c .. d .. e
end
return p