Jump to content

Module:User:Mr. Stradivarius/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mr. Stradivarius (talk | contribs) at 12:09, 2 May 2017 (another test). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

local template = [=[

== Foo ==

Bar baz.
]=]

function p.main(frame)
	local parent = frame:getParent()
	parent:preprocess('\n== Test ==')
	return parent:preprocess(template)
end

return p