blob: 341b94d576e5a48f61d4a482b7988b6e7c1f98e8 [file] [log] [blame]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ordered List: &lt;ol&gt; &lt;li&gt;</title>
</head>
<body>
<!-- is block -->
<ol class="class" id="id" xml:lang="en" start="05">
<li class="class" id="id2" xml:lang="en" value="9">text</li>
</ol>
<!-- can be empty -->
<ol></ol>
<ol>
<li></li>
<li></li>
</ol>
<!-- can contain structured inline -->
<ol>
<li>some <em>text</em>
<pre>more text</pre>
</li>
</ol>
<!-- can contain blocks -->
<ol>
<li>
<p>some</p>
<p>text</p>
</li>
</ol>
<!-- can contain interactive -->
<ol><li><a>text</a></li></ol>
</body>
</html>