blob: a21f78004cbe13c87db3ae747f665be6fbabc9a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<!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>
|