Zelda110(留言 | 贡献)2025年11月30日 (日) 12:38的版本 (创建页面,内容为“local p = {} function p.show(frame) local smw = mw.smw if not smw then return "⚠️ Semantic MediaWiki 未启用" end -- 查询所有 IsFeatured::Yes 页面 local q = smw.ask{ query = "IsFeatured::Yes", limit = 0, -- 获取全部 format = "o" -- 返回对象 } if not q or #q == 0 then return "(暂无特色条目)" end -- 随机选择一条 math.randomseed(os.…”)