@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 Tue Mar 31 07:20:21 UTC 2026.