You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
When trying to diff an HTML file, Graphtage throws an error when encountering e.g.:
<meta name=foo
because 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: