Difference between revisions of "Module:Noinclude"

From Nordic Larp Wiki
Jump to navigation Jump to search
en>CambridgeBayWeather
m (Protected "Module:Noinclude": High-risk Lua module ([Edit=Require template editor access] (indefinite)))
(No difference)

Revision as of 23:09, 29 October 2016

Usage

This module has the same function as a pair of <noinclude>...</noinclude> tags, but can be nested within them without causing issues.

{{#invoke:Noinclude|noinclude|text=content to noinclude}}


local p = {}
function p.noinclude(frame)
	return frame:getParent():preprocess("<noinclude>" .. frame.args.text .. "</noinclude>");
end
return p