Mr Initial Man
12-17-2007, 04:01 AM
Is it appropriate to mix and match markups by using, say, XHTML 1.1 as a base language, and filling in the gaps with something else? Something along the lines of, say...
<html
xml:lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:forms="http://www.w3.org/2002/xforms"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:tei="[Whatever the namespace is]"
xmlns:mine="[XML for my own elements]"
>
I know it would be impossible to validate, but would something like this be acceptable?
<html
xml:lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:forms="http://www.w3.org/2002/xforms"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:tei="[Whatever the namespace is]"
xmlns:mine="[XML for my own elements]"
>
I know it would be impossible to validate, but would something like this be acceptable?