mdbook/tests/testsuite/markdown/basic_markdown/expected/lists.html
Eric Huss 03443f723c Add more comprehensive tests for HTML rendering
This adds a bunch of tests to better exercise the HTML rendering and to
be able to track any changes in its behavior.

This includes a new `check_all_main_files` to more conveniently check
the HTML content of every chapter in a book.
2025-09-16 14:07:54 -07:00

50 lines
No EOL
569 B
HTML

<h1 id="lists"><a class="header" href="#lists">Lists</a></h1>
<ol>
<li>A</li>
<li>Normal</li>
<li>Ordered</li>
<li>List</li>
</ol>
<hr />
<ol>
<li>A
<ol>
<li>Nested</li>
<li>List</li>
</ol>
</li>
<li>But</li>
<li>Still</li>
<li>Normal</li>
</ol>
<hr />
<ol start="7">
<li>Start list</li>
<li>with a different number.</li>
</ol>
<hr />
<ul>
<li>An</li>
<li>Unordered</li>
<li>Normal</li>
<li>List</li>
</ul>
<hr />
<ul>
<li>Nested
<ul>
<li>Unordered</li>
</ul>
</li>
<li>List</li>
</ul>
<hr />
<ul>
<li>This
<ol>
<li>Is</li>
<li>Normal</li>
</ol>
</li>
<li>?!</li>
</ul>