模块:FeaturedPage:修订间差异
来自「荏苒之境」
创建页面,内容为“local featured_page = {} return featured_page” |
// via Wikitext Extension for VSCode |
||
第1行: | 第1行: | ||
local featured_page = {} | local featured_page = {} | ||
featured_page.show = function(frame) | |||
while true do | |||
local title_text = mw.site.randomPages(1, 0)[1] | |||
if not string.match(title_text, ":") then | |||
local title = mw.title.new( | |||
string.match(title_text, "([^/]+)")) | |||
return title.content | |||
end | |||
end | |||
end | |||
return featured_page | return featured_page |
2025年8月20日 (三) 16:01的版本
此模块的文档可以在模块:FeaturedPage/doc创建