Munurin millum rættingarnar hjá "Module:Italic title"

Frá Wikipedia, hin frælsa alfrøðin
Stovnaði síðu við "-- This module implements {{italic title}}. local p = {} function p._main(args, frame, title) args = args or {} frame = frame or mw.getCurrentFrame() title = title or..."
 
s Friðaði Module:Italic title: verður væntandi nógv brúkt ([Rætta=Loyv bert umboðsstjórum] (óavmarkaða tíð) [Flyt=Loyv bert umboðsstjórum] (óavmarkaða tíð))
 
(Ongin munur)

Seinasta endurskoðan sum var 7. mai 2015 kl. 22:54

This is a Lua implementation of {{italic title}}. Please see the template page for documentation.


-- 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("''%s'' %s", prefix, parentheses)
	else
		result = string.format("''%s''", title.text)
	end
	if title.namespace ~= 0 then
		result = title.nsText .. ':' .. 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