1<!DOCTYPE html> 2<html> 3 <head></head> 4 <body> 5 <h3> 6 Section in a template 7 </h3> 8 <div class="toc"> 9 <p> 10 <b>Table of contents</b> 11 </p> 12 <ul> 13 <li> 14 <a href="#section_in_a_template.test">Test</a> 15 </li> 16 </ul> 17 </div> 18 <p> 19 Some text before the section. 20 </p> 21 <div id="section_in_a_template.test"> 22 <h3> 23 Test 24 </h3> 25 <div id="section_in_a_template.test"> 26 <p> 27 Hello. 28 </p> 29 <h3 id="section_in_a_template.test.just_to_test_id_generation"> 30 Just to test id generation 31 </h3> 32 <p> 33 Goodbye. 34 </p> 35 </div> 36 </div> 37 </body> 38</html> 39