1
vote
Add HTML 5 doctype to XDocument (.NET)
You don't get the space if you write to an XmlTextWriter:
XDocument doc = new XDocument();
doc.AddFirst(new XDocumentType("html", null, null, null));
doc.Add …
