Module:Apirow

From Warcraft Watch Secrets
Jump to navigation Jump to search

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

-- https://wowpedia.fandom.com/wiki/Template:Apirow
local m = {}

local style1 = 'style="padding: 4px; padding-right: 1em; font-weight: bold;"'
local style2 = 'style="padding: 4px;"'

function m.main(f)
	local col2 = f.args[2]:gsub(", ", " • ")
	 -- for some reason we cant pass proper hyperlinks into templates/modules
	col2 = col2:gsub("%[%[(https.+)%]%]", "[%1]")
	return string.format("|-\n| %s | %s || %s | %s", style1, f.args[1], style2, col2)
end

return m