Module:Unstrip

From blackwiki
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...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
-- 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