Module:Unstrip

From All About Ayrshire
Revision as of 08:38, 1 November 2015 by Admin (talk | contribs) (1 revision)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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