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:40, 7 June 2015. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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