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
If I debug into @catch, XML_GLOBAL_ERROR_STACK contains EzXML.XMLError[], and if I call throw_xml_error() whilst debugged:
debug>throw_xml_error()
ERROR: XMLError: unterminated entity reference & from tree module (code:1302, line:0)
I'm guessing xmlNewDocProp in AttributeNode can't accept a string containing "&&". Rather than using an AttributeNode I tried using setindex! to set the same attribute. This worked and I can see that the name is &&.
The text was updated successfully, but these errors were encountered:
MWE from a fresh Julia session:
If I debug into
@catch
,XML_GLOBAL_ERROR_STACK
containsEzXML.XMLError[]
, and if I callthrow_xml_error()
whilst debugged:I'm guessing
xmlNewDocProp
inAttributeNode
can't accept a string containing"&&"
. Rather than using anAttributeNode
I tried usingsetindex!
to set the same attribute. This worked and I can see that the name is&&
.The text was updated successfully, but these errors were encountered: