Difference between revisions of "Module:Unstrip"
(No difference)
|
Revision as of 15:40, 7 June 2015
Documentation for this module may be created at Module:Unstrip/doc
-- 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
return p