来自Local Chinese Wikipedia
imported>Xiplus-abot2023年11月12日 (日) 20:50的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到导航
跳转到搜索
此模块的文档可以在Module: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