Module:PageRef

From Deadlock Wiki
Revision as of 13:46, 17 October 2024 by SerpentofSet (talk | contribs) (PageRef needs some logic to get the right filename out)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:PageRef/doc

local p = {}

-- Generates appropriate filename from name and type
p.getFilename = function(frame)
	local name = frame.args[1]
	local type = frame.args[2]
	
	-- Prefix with File namespace
	name = "File:" .. name
	
	-- Do some name fiddling where appropriate (can be expanded if new file naming conventions arise)
	if (string.lower(type)=="hero") then name = name .. " MM" end -- Hero files are suffixed with MM (minimap)
	
	-- Try to grab SVG if possible
	if mw.title.new(name..".svg") ~= nil then
		name = name .. ".svg"
	else
		name = name .. ".png"
	end
	
	return name
end

return p