对于具有同等位置的有序列表,哪个标签在语义上是正确的 - OL 或 UL?

Which tag is semantically correct for ordered list with ex aequo positions - OL or UL?

如果一个列表确实是有序的(按位置排序),但有些位置数字加倍(因为公平的结果),那么应该使用无序列表标签(UL),还是仍然有序列表(OL) ?

如果列表的顺序很重要,即使顺序不标准,列表也应该用 Ordered List element (<ol>).

标记

, the default numbering of list items can be altered by using the value attribute.

ex aequo(即均匀放置或"dead heat")比赛结果的情况可以这样标记:

<ol>
  <li value="1">Penny Oleksiak</li>
  <li value="1">Simone Manuel</li>
  <li value="3">Sarah Sjöström</li>
</ol>