这是本页的一个历史版本,由Xiplus-abot(留言 | 贡献)在2020年6月23日 (二) 00:07 (已保护“Module:Break”:高風險模板:718引用<!-- 機器人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