I have html file that is a well-formed xml document (tags are paired), but contains anchor like the one below:
<a href="mailto:test@domain.com?subject=Hello&body=someMessageHere" target="_top" style="text-decoration: none;">link</a>
Xml parser invoked by XDocument.Load throws XmlException that says:
Additional information: '=' is an unexpected token. The expected token is ';'.
How can I instruct parser that I '&body' is not an entity? Do I must escape '&' character?