Jump to content

Module:Unstrip

विकिपीडिया से
SM7 (बातचीत | योगदान) (२ revisions imported from en:Module:Unstrip) के द्वारा 17:58, 16 नवंबर 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
return p