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

function p.Semantify(frame)
	pf = frame:getParent()
	args = pf.args
	title = mw.title.getCurrentTitle()
	
	return '->' .. args[1] .. 'x' .. args[2] .. 't' .. title.text '<-'
end

return p