“模块:Radio-list”的版本间差异

添加578字节 、​ 2024年1月10日 (星期三)
解决colspan和rowspan撞到一起的时候缩进错误的bug:What a Wonderful Radio!!#节目表第92行
标签移动版网页编辑 移动版编辑
Zth讨论 | 贡献
(解决colspan和rowspan撞到一起的时候缩进错误的bug:What a Wonderful Radio!!#节目表第92行)
 
(未显示2个用户的7个中间版本)
end
 
function spanrspan(str)
return mw.ustring.match(str, "rowspan%s*=%s*[\"\']?(%d+)") or 1
end
 
function cspan(str)
return mw.ustring.match(str, "colspan%s*=%s*[\"\']?(%d+)") or 1
end
 
function ktype(str)
local key = str:sub(1, 2)
if key == "cv" or key == "CV" then
return "read"
elseif key == "BV" or key == "bv" or key == "AV" or key == "av" then
return "video"
end
end
 
local id = args.start or 1
local rowspan = {}
local colspan = 0
local urlcol = tonumber(args.urlcol)
for k,v in ipairs(args) do
if i == 1 then
local date = date(v)
result = result.."\n|-\n|"..(date[1] == 1 and id or "style=\"text-align:center\"|–").."|\n|"..date[2]
id = id + date[1]
colspan = 0
else
rowspan[i] = rowspan[i] or 0
if rowspan[i] > 0 then
rowspan[i] = rowspan[i] - 1
if colspan > 0 then
colspan = colspan - 1
end
elseif colspan > 0 then
colspan = colspan - 1
else
local td = cell(v)
if td[1] then
rowspan[i] = spanrspan(td[1]) - 1
colspan = cspan(td[1]) - 1
end
if i == (ncvcols % ncols) then
result = result.."|\n|"..(td[1] or "")
if td[2] then
result = result.." |"
end
elseif i == 0 then
result = result.."|\n|"..(td[1] and td[1].."|" or "")..td[2]
elseif i == urlcol then
result = result.."|\n|"..(td[1] or "")..
(td[2] == "" and " |" or " |<div class=\"video-link\"|>[https://www.bilibili.com/read"..ktype(td[2]).."/"..td[2].." "..td[2].."]</div>")
else
result = result.."|\n|"..(td[1] or "")..
(td[2] == "" and " class=\"table-none\"| " or
(" |"..frame:expandTemplate{title = "memberlink/cv", args = mw.text.split(td[2], "、")}))
14,865

个编辑