モジュール:Break
2014年6月17日 (火) 17:01時点におけるja>K-icznによる版 (en:Module:Break 15:22, 20 November 2013(UTC)より)
このモジュールについての説明文ページを モジュール:Break/doc に作成できます
-- This module implements {{break}}
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( '<br />', num )
end
return p