Module:Expand wikitext: Difference between revisions
Jump to navigation
Jump to search
m Pppery moved page Module:Preprocess to Module:Expand wikitext without leaving a redirect: Per RM discussion |
(No difference)
|
Revision as of 22:58, 12 March 2019
Documentation for this module may be created at Module:Expand wikitext/doc
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