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
However, this fails because it treats all its children with the same ns2 namespace. Since the children elements have no namespace, they are all ignored.
The default Termium XML output looks like this:
Here, the
termium_extract
element has a namespace marked asns2
, but its children have no namespaces.Technically, it should be parsed like this:
However, this fails because it treats all its children with the same
ns2
namespace. Since the children elements have no namespace, they are all ignored.Instead, this would work:
Which is treating the element itself with no namespace, and the children have no namespace. This generates proper XML.
This is a bug in lutaml-model.
This can be found reproducible in the PR.
The text was updated successfully, but these errors were encountered: