{{i}} Документація модуля[створити]
-- 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