@pos without @line

In XMIR, each <o/> element with a @pos attribute must also have a @line attribute.

Incorrect:

<object>
  <o pos="3" name="foo"/>
</object>

Correct:

<object>
  <o line="2" pos="3" name="foo"/>
</object>

Published on Fri Sep 12 07:13:57 UTC 2025.