continued-from
Continued From
ID of a list which the current list continues; used to connect
discontiguous lists that form one logical list.
Remarks
Sometimes a list may be interrupted by other material that is not part of the list. In
that case, the list should be marked up as two (or more) lists, and each one except the
first should use this attribute to refer to the ID of the preceding one. This
connection allows processors to treat the parts as parts of a larger logical list, for
example, by numbering items consecutively rather than restarting each (partial) list at
1.
This attribute should refer to an ID on the same type of element as it
occurs on.
Used on Elements: <def-list>, <list>
Value | Meaning |
---|---|
An identifier (IDREF) | Points to the existing identifier. |
Restriction | @continued-from is an optional attribute; there is no default. |
Example
...
<list id="g387" list-type="order"
list-content="procedure-list" prefix-word="Step ">...
<list-item><p>Attach the other red jumper cable clamp to the
working battery's positive terminal.</p></list-item>
</list>
<graphic xlink:href="warning.jpg"/>
<list continued-from="g387" list-type="order"
list-content="procedure-list" prefix-word="Step ">
<list-item><p>Attach one black jumper cable clamp to
the working battery's negative terminal.</p></list-item>
<list-item><p>Attach the other black jumper cable clamp to
a clean metal surface on the disabled vehicle.</p></list-item>
...</list>
...