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
My bad... I didn't know my XML validation well enough. Apparently a "naked ampersand" is invalid. It either needs to be part of an HTML encoding (like < for example) or it needs to be encoded itself (as in: & ). So this isn't a Nori issue at all.
However, I wonder if Nori should do something other than just try and parse, because the result was really not what it should be.
If I have XML like this:
and try to parse it like this:
I get this:
Which is clearly wrong. If I change the & into & it parses just fine:
Why can't I use a raw & in the content? That seems to be a bug, right?
The text was updated successfully, but these errors were encountered: