1<!DOCTYPE html> 2<html> 3 <head></head> 4 <body> 5 <h3> 6 Escape 7 </h3> 8 <div class="toc"> 9 <p> 10 <b>Table of contents</b> 11 </p> 12 <ul> 13 <li> 14 <a href="#escape.escape">Escape</a> 15 </li> 16 </ul> 17 </div> 18 <div id="escape.escape"> 19 <h3> 20 Escape 21 </h3> 22 <div id="escape.escape"> 23 <p> 24 <span class="emphasis"><em>Da do do do. Da da da da. That's all I have 25 to say to you.</em></span> 26 </p> 27 <p> 28 This letter α should have a space either side of it. 29 </p> 30 <p> 31 These should be properly encoded: > < " 32 </p> 33 <p> 34 This <a>link</a> shouldn't be changed. 35 </p> 36 <p> 37 Some other problematic links: <a>one</a>, <a>two</a>, <a>three</a>. 38 </p> 39 <p> 40 <span class="emphasis"><em>This will be escaped</em></span> 41 </p> 42 <p> 43 \[ generates [. \] generates ]. 44 </p> 45 </div> 46 </div> 47 </body> 48</html> 49