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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
<html>
<head>
<title>Normal</title>
<style type="text/css">#example { color: red; }</style>
</head>
<body>
<h1>
<span style="color: red;">test doc</span>
</h1>
<p>
<span>first issue</span>
</p>
<p>
<span>
</span>
</p>
<ul>
<li>
<span>bit</span>
</li>
<li>
<span><i><b>bold italic</b></i></span>
</li>
<ul>
<li>
<span>orange</span>
</li>
<li>
<span>apple</span>
</li>
</ul>
<li>
<span>final</span>
</li>
</ul>
<p>
<span>
</span>
</p>
<p>
<span>text to separate lists</span>
</p>
<p>
<span>
</span>
</p>
<ol start="1">
<li>
<span>now with numbers</span>
</li>
<li>
<span>the prisoner</span>
</li>
<ol start="1">
<li>
<span>not an <i>italic number</i></span>
</li>
<li>
<span>a <b>bold human</b> being</span>
</li>
</ol>
<li>
<span>end</span>
</li>
</ol>
<p>
<span>
</span>
</p>
<p>
<span>
<b>bold</b><br/>
<i>italic</i><br/>
</span>
</p>
<p>
<pre>
def func(x):
if x < 1:
return 'a'
return 'b'
</pre>
</p>
<p>
Some <code>fixed width text</code> here<br/>
<i><code>italic fixed width text</code></i>
</p>
<script type="text/javascript">
//<![CDATA[
(function(id) {
document.write('<script type="text/javascript" src="' +
'http://connect.decknetwork.net/deck' + id + '_js.php?' +
(new Date().getTime()) + '"></' + 'script>');
})("test");
//]]>
</script>
<p>
2012. Now that was a good year. So was 2011. That's all.
</p>
<p>
3.14159 is an approximation of pi.
</p>
<p>
+ not + a list item
</p>
<p>
+foo
</p>
<p>
- foo - bar
</p>
<p>
-foo
</p>
<p>
not a header<br>
--
</p>
<p>
not a hr<br>
<br>
---
<br>
- - -
</p>
<p>
c:\tmp, \\server\path, \_/, foo\bar, #\#, \\#
</p>
</body>
</html>
|