2023年政策修订增补工作正在进行中,欢迎参与!
Module:NonBreakingSpace
跳转到导航
跳转到搜索
-- 初始化模块
local nbsp = {}
-- 主函数
function nbsp.count(value)
local times = value.args[1]
if tonumber(times) ~= nil then
if tonumber(times) > 0 then
return string.rep(' ', times)
else
return value:preprocess("<big>{{color|blue|'''参数必须大于0!'''}}</big>") -- 输入的参数为0时返回该报错
end
else
return value:preprocess("<big>{{color|red|'''参数只能输入数字!'''}}</big>") -- 输入的参数不为纯数字时返回该报错
end
end
return nbsp