「モジュール:Is article」の版間の差分
Anime and manga articles using obsolete and incorrect infobox parameters>Gonnym (this should work without the loop) |
細 (1版 をインポートしました: Anime and manga articles using obsolete and incorrect infobox parameters) |
(相違点なし)
|
2023年3月20日 (月) 20:40時点における最新版
このモジュールについての説明文ページを モジュール:Is article/doc に作成できます
local p = {}
local disambiguationTemplates = {
"[Dd]isambiguation",
"[Dd]isambig",
"[Dd]isamb",
"[Dd]ab",
"[Ss]urname",
"[Tt]emplate disambiguation",
}
function p.main(frame)
local getArgs = require("Module:Arguments").getArgs
local args = getArgs(frame)
local page = mw.title.new(args[1], 0)
if not page then
return "badtitle"
end
if not page.exists then
return "empty"
end
if page.isRedirect then
return "redirect"
end
local content = page:getContent()
if content then
content = string.gsub(content, "noinclude", "<!-- noinclude -->")
for _, name in ipairs(disambiguationTemplates) do
if content:match("{{%s?" .. name .. "%s?}}") and not content:match("{{{%s?" .. name .. "%s?}}}") then -- to disable false positives in parameter names {{{disamb}}}
return "dab"
end
end
end
return "article"
end
return p