Module:Icon
From Eco - English Wiki
Documentation for this module may be created at Module:Icon/doc
local p = {}
function p.main(param)
local Utils = require('Module:Utils')
local IconUtils = require('Module:IconUtils')
local args = Utils.normaliseArgs(param)
if args.name == nil or args.name == '' then return 'Module:IconUtils \'name\' must be specified.' end
local Icon = IconUtils.main{ name = args.name, size = 128, style = 3, link = tagLink }
return Icon
end
return p