diff options
Diffstat (limited to 'tests/html-reader.html')
-rw-r--r-- | tests/html-reader.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/html-reader.html b/tests/html-reader.html index 69bb9ba8a..d059d7b4b 100644 --- a/tests/html-reader.html +++ b/tests/html-reader.html @@ -302,6 +302,7 @@ These should not be escaped: \$ \\ \> \[ \{ <h1>Inline Markup</h1> <p>This is <em>emphasized</em>, and so <em>is this</em>.</p> <p>This is <strong>strong</strong>, and so <strong>is this</strong>.</p> +<p>Empty <strong></strong> and <em></em>. <p>An <em><a href="/url">emphasized link</a></em>.</p> <p><strong><em>This is strong and em.</em></strong></p> <p>So is <strong><em>this</em></strong> word.</p> @@ -426,5 +427,28 @@ An e-mail address: nobody [at] nowhere.net<blockquote> <pre><code> { <code> } </code></pre> <p>If you want, you can use a caret at the beginning of every line, as with blockquotes, but all that you need is a caret at the beginning of the first line of the block and any preceding blank lines.</p> +<p>text<em> Leading space</em></p> +<p><em>Trailing space </em>text</p> +<p>text<em> Leading spaces</em></p> +<p><em>Trailing spaces </em>text</p> +<h1>Tables</h1> +<table> + <tr> + <th>X</th> + <th>Y</th> + <th>Z</th> + </tr> + <tr> + <td>1</td> + <td>2</td> + <td>3</td> + </tr> + <tr> + <td>4</td> + <td>5</td> + <td>6</td> + </tr> +</table> +</body> </body> </html> |