这是Module:Break的当前版本,由Xiplus-abot(留言 | 贡献)编辑于2023年11月12日 (日) 20:50 (已更改“Module:Break”的保护设置:高風險模板:5002引用<!-- 機器人3 -->([编辑=仅允许模板编辑员](无限期)[移动=仅允许模板编辑员](无限期)))。这个网址是本页该版本的固定链接。
-- 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