Module:For related page
Appearance
Implements {{for outline}} and {{for timeline}}.
local mFor = require('Module:For')
local mArguments = require('Module:Arguments')
local p = {}
function p.forOutline (frame)
local args = mArguments.getArgs(frame)
local target
if args[1] then
target = args[1]
else
local title = mw.title.getCurrentTitle().text
local titles = {
mw.ustring.lower(mw.ustring.sub(title, 1, 1)) .. mw.ustring.sub(title, 2),
title
}
local outlineForms = {
'Outline of %s',
'Outline of %ss',
'Outline of %s topics',
'Outline of %s-related topics',
'List of %s topics',
'List of %s-related topics',
'List of topics related to the %s'
}
for k, v in pairs(outlineForms) do
for i, j in pairs(titles) do
local lookup = string.format(v, j)
if mw.title.new(lookup, 0).exists then
target = lookup
break
end
end
if target then break end
end
target = target or string.format(outlineForms[1], title)
end
return mFor._For({'a topical guide to this subject', target})
end
return p