1<!DOCTYPE html> 2<html> 3 <head></head> 4 <body> 5 <h3> 6 Simple Markup Test 7 </h3> 8 <div class="toc"> 9 <p> 10 <b>Table of contents</b> 11 </p> 12 <ul> 13 <li> 14 <a href="#simple_markup_test.simple_markup">Simple Markup</a> 15 </li> 16 </ul> 17 </div> 18 <div id="simple_markup_test.simple_markup"> 19 <h3> 20 Simple Markup 21 </h3> 22 <div id="simple_markup_test.simple_markup"> 23 <p> 24 <span class="emphasis"><em>italic</em></span> <span class="bold"><strong>bold</strong></span> 25 <span class="underline">underline</span> <tt>teletype</tt> 26 </p> 27 <p> 28 //not italic// **not bold** __not underline__ ==not teletype== 29 </p> 30 <p> 31 <span class="underline">odd__ edge case</span> 32 </p> 33 <p> 34 not__underlined__hopefully 35 </p> 36 <p> 37 (<span class="bold"><strong>bold</strong></span>) <span class="underline">und/er/lined</span> 38 </p> 39 <p> 40 <span class="emphasis"><em>all/italic</em></span> * not bold* 41 </p> 42 <p> 43 /not italic <a href="http://www.boost.org/"><span class="bold"><strong>bold</strong></span></a> 44 </p> 45 <p> 46 not_underlined_ 47 </p> 48 <p> 49 _Should not underline escaped markup_. _or this escaped_ markup form. 50 </p> 51 <p> 52 <tt>Matti Meik\u00E4l\u00E4inen</tt> 53 </p> 54 <p> 55 <tt>replaced</tt> 56 </p> 57 <p> 58 <span class="underline">replaced</span> 59 </p> 60 <p> 61 <tt>_mac\ ro_</tt> 62 </p> 63 <p> 64 <span class="emphasis"><em>italic\</em></span> 65 </p> 66 <p> 67 These shouldn't be interepted as markup: == // ** 68 </p> 69 <p> 70 <tt><</tt> <tt>\<</tt> <tt>\\<</tt> 71 </p> 72 </div> 73 </div> 74 </body> 75</html> 76