モジュールの解説[作成]
local ExLink = {}

function ExLink.new(args)
	local obj = {args = args}
	setmetatable(obj, {__index = ExLink})
end

function ExLink:tag(el, cont, ...)
	return '<' ..el.. '>' ..cont.. '</' ..tag.. '>'
end

return ExLink