Module:Unstrip
Revision as of 14:39, 7 June 2015 by blackwiki>Frietjes (←Created page with '-- This module provides a frontend to the mw.text.unstrip function local p = {} function p.unstrip(frame) local t = frame.args[1] or '' return mw.text.unstri...')
Implements {{unstrip}}, {{UnstripNoWiki}}, and {{KillMarkers}}
- mw:Extension:Scribunto/Lua reference manual#mw.text.unstrip
- mw:Extension:Scribunto/Lua reference manual#mw.text.unstripNoWiki
- mw:Extension:Scribunto/Lua reference manual#mw.text.killMarkers
-- This module provides a frontend to the mw.text.unstrip function
local p = {}
function p.unstrip(frame)
local t = frame.args[1] or ''
return mw.text.unstrip(t)
end