Module:RandomPageEmbed

来自LabAnimalWiki
Changzai留言 | 贡献2025年6月29日 (日) 22:04的版本 (创建页面,内容为“local p = {} local pages = { "IVC", "IACUC", "超数排卵", "螨虫" } function p.embed(frame) math.randomseed(os.time()) local selected = pages[math.random(#pages)] return frame:expandTemplate{ title = selected } end return p”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

local p = {}

local pages = {

   "IVC",
   "IACUC",
   "超数排卵",
   "螨虫"

}

function p.embed(frame)

   math.randomseed(os.time())
   local selected = pages[math.random(#pages)]
   return frame:expandTemplate{ title = selected }

end

return p