Is it possible to use schematron to ensure that the list items are in alphanumeric order?
<ul>
<li>1</li>
<li>a</li>
<li>d</li>
<li>g</li>
</ul>
Many thanks!
Is it possible to use schematron to ensure that the list items are in alphanumeric order?
<ul>
<li>1</li>
<li>a</li>
<li>d</li>
<li>g</li>
</ul>
Many thanks!
Yes, it is possible. You can use something like this example rule that reports all
<li>
elements whose value is lower than (lt
) their previous<li>
sibling value.