Does anyone know where <this> HTML5 xsd was extrac...
# javascript
b
Does anyone know where this HTML5 xsd was extracted from? (or where I could get a proper xsd for HTML5, google wasn't fruitful at all)
2
t
сс @Dmitry Romanov [JB]
v
HTML5 does not have a doctype definition or an XML schema definition. This is because, although it shares the same syntax as its predecessor HTML 4, HTML5 itself is neither based on SGML nor XML. It's a markup language in its own right.
That's why you won't find any official schema out there
e
it's also not a closed schema - the standard will continue evolving, and even if it didn't it allows for custom elements and attributes
b
For context, I'm after something structured that I could parse and generate html5 dsl builders. Xsd is just one of the formats out there. I don't expect to use it for validation.
e
there is Web IDL, although the one everybody uses is the (evolving) draft and it is about consistent DOM interfaces
I think any strongly typed HTML builder DSL will be necessarily incomplete
b
Isn't WEB IDL versioned at all? Also is there a single file version of it somewhere (for me to parse)?