更改

跳到导航 跳到搜索
添加111字节 、 2021年4月2日 (五) 13:47
无编辑摘要
第27行: 第27行:  
     ]]
 
     ]]
 
     local pages = smw.query_pages(query)
 
     local pages = smw.query_pages(query)
     local ul = mw.html.create("ul")
+
     local ul = mw.html.create()
 +
    local first = true
 
     for i, t in ipairs(pages) do
 
     for i, t in ipairs(pages) do
         ul:tag("li"):wikitext("[[" .. t .. "]]")
+
         ul:wikitext("[[" .. t .. "]]")
 +
        if first then
 +
            first = false
 +
        else
 +
            ul:wikitext(",")
 +
        end
 
     end
 
     end
 
     return ul:done()
 
     return ul:done()

导航菜单