Jump to content

Module:Unstrip: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
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...'
(No difference)

Revision as of 14:39, 7 June 2015

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