Module:Expand wikitext

This is the current revision of this page, as edited by imported>Pppery at 22:58, 12 March 2019 (Pppery moved page Module:Preprocess to Module:Expand wikitext without leaving a redirect: Per RM discussion). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

local p = {}
local yesno = require("Module:Yesno")
function p.main(frame)
	local pframe = frame:getParent()
	local code = frame.args[1]
	if mw.text.trim(mw.text.killMarkers(code)) == "" or yesno(frame.args.unstrip) then
		code = mw.text.unstripNoWiki(code);
	end
	return pframe:preprocess(code)
end

return p