namespace svg = "http://www.w3.org/2000/svg"
namespace math = "http://www.w3.org/1998/Math/MathML"
namespace rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"

include "xhtml10/xhtml-strict.rnc"
include "svg11/svg11-inc.rnc"
include "inkscape/inkscape.rnc"
include "mml2/mathml2-inc.rnc"
include "rdf/rdf.rnc"
include "xhtml10/ruby.rnc"

head.content &= rdf.elem*
SVG.metadata.content |= rdf.elem

Inline.class |= svg

Inline.class |= mml.math.qname

SVG.foreignObject.content |=
	(	mml.math.qname
	|	html
	|	body
	|	Block.mix*
	)
	
mml.Annotation-xml.datatype.svg |= svg

mml.Annotation-xml.datatype.xhtml |=
	(	html
	|	Block.class
	|	Inline.class
	)
