Module:RandomPageEmbed

来自LabAnimalWiki

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