Module:Break

From Good Old TV Fan Wiki
Revision as of 16:15, 11 March 2017 by Adminpeter (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

-- This module implements

local p = {}

function p.main( frame )

   local num = frame.args[1] or 
   num = tonumber( num )
   if not num or num < 1 or math.floor( num ) ~= num or num == math.huge then
       num = 1
   end
   return mw.ustring.rep( '
', num )

end

return p