blob: 3e07c9b815cccc2ec7e4d306d1ed3585545963dd (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<!DOCTYPE html>
<html>
<head></head>
<body>
<h3>
Simple Markup Test
</h3>
<div class="toc">
<p>
<b>Table of contents</b>
</p>
<ul>
<li>
<a href="#simple_markup_test.simple_markup">Simple Markup</a>
</li>
</ul>
</div>
<div id="simple_markup_test.simple_markup">
<h3>
Simple Markup
</h3>
<div id="simple_markup_test.simple_markup">
<p>
<span class="emphasis"><em>italic</em></span> <span class="bold"><strong>bold</strong></span>
<span class="underline">underline</span> <tt>teletype</tt>
</p>
<p>
//not italic// **not bold** __not underline__ ==not teletype==
</p>
<p>
<span class="underline">odd__ edge case</span>
</p>
<p>
not__underlined__hopefully
</p>
<p>
(<span class="bold"><strong>bold</strong></span>) <span class="underline">und/er/lined</span>
</p>
<p>
<span class="emphasis"><em>all/italic</em></span> * not bold*
</p>
<p>
/not italic <a href="http://www.boost.org/"><span class="bold"><strong>bold</strong></span></a>
</p>
<p>
not_underlined_
</p>
<p>
_Should not underline escaped markup_. _or this escaped_ markup form.
</p>
<p>
<tt>Matti Meik\u00E4l\u00E4inen</tt>
</p>
<p>
<tt>replaced</tt>
</p>
<p>
<span class="underline">replaced</span>
</p>
<p>
<tt>_mac\ ro_</tt>
</p>
<p>
<span class="emphasis"><em>italic\</em></span>
</p>
<p>
These shouldn't be interepted as markup: == // **
</p>
<p>
<tt><</tt> <tt>\<</tt> <tt>\\<</tt>
</p>
</div>
</div>
</body>
</html>
|