Module:直播模式下无法游玩的曲目:修订间差异

来自Arcaea中文维基
(随便写的)
 
(fix)
第3行: 第3行:


function p.main()
function p.main()
local finalText
local finalText = ""
for i, k in pairs(songlist) do
for i, k in pairs(songlist) do

2022年8月4日 (四) 16:41的版本

可在Module:直播模式下无法游玩的曲目/doc创建此模块的帮助文档

local p = {}
local songlist = require("Module:LoadJson").Songlist()["songs"]

function p.main()
	local finalText = ""
	
	for i, k in pairs(songlist) do
		if k.no_stream then
			finalText = finalText
				.. mw.getCurrentFrame():expandTemplate { title = '组排单元', args = { k.title_localized.en, k.id } }
		end
		
	end
	
	
	finalText = "<div class='number'>"..mw.getCurrentFrame():expandTemplate { title = '组排列', args = { ['高度']="154px"  }  }
				.. finalText
				..table.concat(k[2])..mw.getCurrentFrame():expandTemplate { title = '组排列-end' }.."</div>\n"
	return finalText
end

return p