Modul:Italic title: Unterschied zwischen den Versionen
(Use <i> to italicise apostrophes, per ER) |
(replace underscores with spaces in namespace names) |
||
| Zeile 15: | Zeile 15: | ||
end | end | ||
if title.namespace ~= 0 then | if title.namespace ~= 0 then | ||
result = title.nsText .. ':' .. result | result = title.nsText:gsub('_', ' ') .. ':' .. result | ||
end | end | ||
return frame:callParserFunction('DISPLAYTITLE', result, args[1]) | return frame:callParserFunction('DISPLAYTITLE', result, args[1]) | ||
Version vom 20. April 2016, 00:06 Uhr
Die Dokumentation für dieses Modul kann unter Modul:Italic title/doc erstellt werden
-- This module implements {{italic title}}.
local p = {}
function p._main(args, frame, title)
args = args or {}
frame = frame or mw.getCurrentFrame()
title = title or mw.title.getCurrentTitle()
local prefix, parentheses = mw.ustring.match(title.text, '^(.+) (%([^%(%)]+%))$')
local result
if prefix and parentheses and args.all ~= 'yes' then
result = string.format("<i>%s</i> %s", prefix, parentheses)
else
result = string.format("<i>%s</i>", title.text)
end
if title.namespace ~= 0 then
result = title.nsText:gsub('_', ' ') .. ':' .. result
end
return frame:callParserFunction('DISPLAYTITLE', result, args[1])
end
function p.main(frame)
local args = require('Module:Arguments').getArgs(frame, {
wrappers = 'Template:Italic title'
})
return p._main(args, frame)
end
return p