Skip to content

Commit

Permalink
test gitlocalize edit
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgarrish committed Aug 16, 2024
1 parent bc9bec7 commit 6ed72c1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
66 changes: 35 additions & 31 deletions publishing/docs/sync-media/lists.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,38 +102,42 @@ <h3>Explanation</h3>
<p>Although the basic markup for lists in overlays is the same regardless of list type, HTML5 includes two
different types of lists that need to be accommodated.</p>

<p class="bridgehead">Ordered and Unordered Lists</p>
<section id="ol-ul">
<h4>Ordered and Unordered Lists</h4>

<p>The HTML <code>ol</code> and <code>ul</code> list elements each represent sets of items, and are marked up
similarly as follows:</p>

<ul>
<li>A single <code>seq</code> element encloses all the items in the list. This <code>seq</code> must have
an <code>epub:type</code> attribute specifying the property <code class="property">list</code>.</li>
<li>Complex list item (those that contain two or more synchronization points) must also be identified
using <code>seq</code> elements. These <code>seq</code> elements must have an <code>epub:type</code>
attribute specifying the property <code class="property">list-item</code>. If the list item contains
complex structures like sublists or tables, those structures must be marked up as appropriate to
ensure escapability and skippability.</li>
<li>Simple list items &#8212; containing only a single synchronization point &#8212; can be represented
using <code>par</code> elements with an <code>epub:type</code> attribute specifying the property
<code class="property">list item</code>.</li>
</ul>
</section>

<p>The HTML <code>ol</code> and <code>ul</code> list elements each represent sets of items, and are marked up
similarly as follows:</p>

<ul>
<li>A single <code>seq</code> element encloses all the items in the list. This <code>seq</code> must have
an <code>epub:type</code> attribute specifying the property <code class="property">list</code>.</li>
<li>Complex list item (those that contain two or more synchronization points) must also be identified
using <code>seq</code> elements. These <code>seq</code> elements must have an <code>epub:type</code>
attribute specifying the property <code class="property">list-item</code>. If the list item contains
complex structures like sublists or tables, those structures must be marked up as appropriate to
ensure escapability and skippability.</li>
<li>Simple list items &#8212; containing only a single synchronization point &#8212; can be represented
using <code>par</code> elements with an <code>epub:type</code> attribute specifying the property
<code class="property">list item</code>.</li>
</ul>

<p class="bridgehead">Definition Lists</p>

<p>HTML definition lists (the <code>dl</code> element) associate one or more names (<code>dt</code> elements)
with one or more values (<code>dd</code> elements). When constructing these lists in an overlay document,
the following markup rules should be followed:</p>

<ul>
<li>A single <code>seq</code> element should enclose all the terms and definitions in the list. This
<code>seq</code> must have an <code>epub:type</code> attribute specifying the property <code
class="property">list</code>, idnetical to ordered and unordered lists.</li>
<li>A <code>seq</code> elements should enclose all the related <code>dt</code> and <code>dd</code>
pairings, and include an <code>epub:type</code> attribute specifying the property <code
class="property">list-item</code>.</li>
</ul>
<section id="dl">
<h4>Definition Lists</h4>

<p>HTML definition lists (the <code>dl</code> element) associate one or more names (<code>dt</code> elements)
with one or more values (<code>dd</code> elements). When constructing these lists in an overlay document,
the following markup rules should be followed:</p>

<ul>
<li>A single <code>seq</code> element should enclose all the terms and definitions in the list. This
<code>seq</code> must have an <code>epub:type</code> attribute specifying the property <code
class="property">list</code>, idnetical to ordered and unordered lists.</li>
<li>A <code>seq</code> elements should enclose all the related <code>dt</code> and <code>dd</code>
pairings, and include an <code>epub:type</code> attribute specifying the property <code
class="property">list-item</code>.</li>
</ul>
</section>
</section>

<section id="refs">
Expand Down
4 changes: 0 additions & 4 deletions publishing/docs/sync-media/overlays.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,10 @@ <h3>Overview</h3>
<p>Media Overlays documents are built using the following elements:</p>

<table class="elemDef">
<thead>
<tr>
<th>Element</th>
<th>Use</th>
</tr>
</thead>
<tbody>
<tr>
<td class="root"><a href="https://www.w3.org/TR/epub/#sec-smil-smil-elem"
>smil</a></td>
Expand Down Expand Up @@ -133,7 +130,6 @@ <h3>Overview</h3>
<td class="use">The <code>audio</code> element identifies the audio file and optional start and
end points for playback.</td>
</tr>
</tbody>
</table>

<p>In order to synchronize a publication, each content document in a publication must have its own overlay
Expand Down

0 comments on commit 6ed72c1

Please sign in to comment.