模組:沙盒/Wetitpig0/Signcount

文档图示 模块文档[创建]
local p = {}

function p.OrderListCount(frame)
    local count = 1
    local list = frame:expandTemplate{title = "User:Wetitpig0/弔唁處"}
    for i in string.gmatch(list, "\n#[^#*:]") do
        count = count + 1
    end
    return count
end

return p