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
Currently (2.11) "Mixed content" is only exposed in case of textual content preceding an element, like:
<root>
some text
<child> ... </child>
</root>
but is not retained or exposed in token stream if it comes after a close element, so none of text segments in:
<root>
<child>...</child>
first text
<child>...</child>
last text
</root>
are exposed. This means that although as per #403JsonNode could now express such content (considering nominal key of "" for text segements), but does not get them as FromXmlParser does not create matching logical tokens.
This should be fixed.