模組:Slight-pause mark list
模組解[開]
你可能想去為呢個Scribunto module開一個解版。 編者可以響呢個模組嘅沙盤 (開 | 鏡)同埋試例 (開)版度試驗佢。 請加個類到個/doc嘅細版度。 呢個模組嘅細版。 |
require('strict')
local getArgs = require('Module:Arguments').getArgs
local p = {}
function p.main(frame)
local args = getArgs(frame)
return p._main(args)
end
function p._main(args)
-- Main module code goes here.
local _args, countNil = {}, 0
for i = 1, math.huge do
if args[i] then
table.insert(_args, args[i])
countNil = 0
else
countNil = countNil + 1
if countNil == 4 then break end
end
end
if _args == {} then
return
end
return '<span class="nowrap">' .. table.concat(_args, '</span>、<wbr /><span class="nowrap">') .. '</span>'
end
return p