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
I was parsing a XML file that contains CData sections and got empty strings. After a little digging I found the error. It seems that the underlying xml package produces multiple xml.CharData-Tokens for a node if it contains CData.
Replacing
I was parsing a XML file that contains CData sections and got empty strings. After a little digging I found the error. It seems that the underlying
xml
package produces multiplexml.CharData
-Tokens for a node if it contains CData.Replacing
go-xmldom/dom.go
Line 69 in e1029cd
with
fixes the error.
Additionally I wrote a test case for this issue.
The text was updated successfully, but these errors were encountered: