local p = {}
local c = require( "Module:Common" )

function p.Semantify(frame)
	pf = frame:getParent()
	args = pf.args
	title = mw.title.getCurrentTitle()
	if c.istJahreszahl(frame) == "true" then
		ij = "IST JAHRESZAHL"
	else
		ij = 'no year'
	end
	return '->' .. args[1] .. 'x' .. args[2] .. 't:' .. title.text .. tostring(ij) ..'<-'
end

return p