Module:Format title: Difference between revisions
From EverybodyWiki Bios & Wiki
WikiMaster (talk | contribs) m 1 revision imported |
m Add new revision |
||
| Line 13: | Line 13: | ||
function p._italic(args) | function p._italic(args) | ||
local title = args[1] | local title = args[1] | ||
local prefix, | local invert = args[2] | ||
local prefix, parenthetical = mw.ustring.match(title, '^(.+) %(([^%(%)]+)%)$') | |||
local result | local result | ||
if prefix and | if prefix and parenthetical and args.all ~= 'yes' then | ||
result = string.format("\'\'%s\'\' %s", prefix, | if invert == 'i' or invert == 'inv' or invert == 'invert' then | ||
result = string.format("%s \(\'\'%s\'\'\)", prefix, parenthetical) | |||
else | |||
result = string.format("\'\'%s\'\' \(%s\)", prefix, parenthetical) | |||
end | |||
else | else | ||
result = string.format("\'\'%s\'\'", title) | result = string.format("\'\'%s\'\'", title) | ||
| Line 27: | Line 32: | ||
function p._quotes(args) | function p._quotes(args) | ||
local title = args[1] | local title = args[1] | ||
local prefix, | local invert = args[2] | ||
local prefix, parenthetical = mw.ustring.match(title, '^(.+) %(([^%(%)]+)%)$') | |||
local result | local result | ||
if prefix and | if prefix and parenthetical and args.all ~= 'yes' then | ||
result = string.format("\"%s\" %s", prefix, | if invert == 'i' or invert == 'inv' or invert == 'invert' then | ||
result = string.format("%s \(\"%s\"\)", prefix, parenthetical) | |||
else | |||
result = string.format("\"%s\" \(%s\)", prefix, parenthetical) | |||
end | |||
else | else | ||
result = string.format("\"%s\"", title) | result = string.format("\"%s\"", title) | ||
Latest revision as of 11:23, 14 March 2019
§
| This module is rated as beta, and is ready for widespread use. It is still new and should be used with some caution to ensure the results are as expected. |
Usage
Links and formats article titles in body text for use on disambiguation or other pages. Used by templates {{fti}} and {{ftq}}.
- Function p._italic italicizes the non-parenthetical portion (or, optionally, only the parenthetical portion) of its argument (typically a page name).
- Function p._quotes encloses the non-parenthetical portion (or, optionally, only the parenthetical portion) of its argument (typically a page name) in quotation marks.
{{#invoke:Format title|function_name|article_title}}
local getArgs = require('Module:Arguments').getArgs
local p = {}
local function makeInvokeFunc(funcName)
return function (frame)
local args = getArgs(frame)
return p[funcName](args)
end
end
p.italic = makeInvokeFunc('_italic')
function p._italic(args)
local title = args[1]
local invert = args[2]
local prefix, parenthetical = mw.ustring.match(title, '^(.+) %(([^%(%)]+)%)$')
local result
if prefix and parenthetical and args.all ~= 'yes' then
if invert == 'i' or invert == 'inv' or invert == 'invert' then
result = string.format("%s \(\'\'%s\'\'\)", prefix, parenthetical)
else
result = string.format("\'\'%s\'\' \(%s\)", prefix, parenthetical)
end
else
result = string.format("\'\'%s\'\'", title)
end
return result
end
p.quotes = makeInvokeFunc('_quotes')
function p._quotes(args)
local title = args[1]
local invert = args[2]
local prefix, parenthetical = mw.ustring.match(title, '^(.+) %(([^%(%)]+)%)$')
local result
if prefix and parenthetical and args.all ~= 'yes' then
if invert == 'i' or invert == 'inv' or invert == 'invert' then
result = string.format("%s \(\"%s\"\)", prefix, parenthetical)
else
result = string.format("\"%s\" \(%s\)", prefix, parenthetical)
end
else
result = string.format("\"%s\"", title)
end
return result
end
return p
