I am using XmlWriter to render HTML. How can I get XmlWriter to emit the correct tag that looks like this?
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
that's what i still have
var xml = XmlWriter.Create(HtmlFileName, new XmlWriterSettings { Indent = true, OmitXmlDeclaration = true});
xml.WriteDocType("html", "-//W3C//DTD XHTML 1.0 Transitional//EN", "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd", null);
xml.WriteStartElement("html");
xml.WriteAttributeString("xmlns", "http://www.w3.org/1999/xhtml");
...
Last line crash
source
share