39 lines
715 B
Plaintext
39 lines
715 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<h3>
|
|
Section in a template
|
|
</h3>
|
|
<div class="toc">
|
|
<p>
|
|
<b>Table of contents</b>
|
|
</p>
|
|
<ul>
|
|
<li>
|
|
<a href="#section_in_a_template.test">Test</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<p>
|
|
Some text before the section.
|
|
</p>
|
|
<div id="section_in_a_template.test">
|
|
<h3>
|
|
Test
|
|
</h3>
|
|
<div id="section_in_a_template.test">
|
|
<p>
|
|
Hello.
|
|
</p>
|
|
<h3 id="section_in_a_template.test.just_to_test_id_generation">
|
|
Just to test id generation
|
|
</h3>
|
|
<p>
|
|
Goodbye.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|