Jump to content

Module:Unstrip

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Frietjes (talk | contribs) at 14:39, 7 June 2015 (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...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- 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