Expects quoted attributes in HTML unnecessarily, preventing diffing #25
Labels
Comments
|
This is because Graphtage is (incorrectly) currently using Python's XML parser to parse HTML. This is a bug. We need to switch to an actual HTML parser. I will use this issue to track that development. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When trying to diff an HTML file, Graphtage throws an error when encountering e.g.:
<meta name=foobecause it expects quoted attributes like so:
<meta name="foo"However, the first variant without quotes is perfectly valid HTML and should not prevent Graphtage from diffing the file.
The text was updated successfully, but these errors were encountered: