diff options
author | John MacFarlane <jgm@berkeley.edu> | 2011-07-16 09:42:16 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2011-07-16 09:42:16 -0700 |
commit | dd59cd23415e1fdf3286ea4d45a104e8c093717d (patch) | |
tree | 41df242e0e6ba82a4da224edc5864e57a7e1542e /tests/html-reader.html | |
parent | 934867f85829a75f38291cd694da32184252a305 (diff) | |
download | pandoc-dd59cd23415e1fdf3286ea4d45a104e8c093717d.tar.gz |
HTML reader: treat Plain as Para when needed.
For example, in
Just a few glitches remaining.
<ul><li> In this situation, one loses the list.
</ul>
And in this, the preformatting.
<pre>Preformatted text not starting with its own blank line.
</pre>
Thansk to Dirk Laurie for noticing the issue.
Diffstat (limited to 'tests/html-reader.html')
-rw-r--r-- | tests/html-reader.html | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/html-reader.html b/tests/html-reader.html index a51ee3307..ea10a306c 100644 --- a/tests/html-reader.html +++ b/tests/html-reader.html @@ -298,40 +298,6 @@ These should not be escaped: \$ \\ \> \[ \{ <dd>Low-voiced stringed instrument.</dd> </dl> <hr /> -<h1>HTML Blocks</h1> -<p>Simple block on one line:</p> -foo<p>And nested without indentation:</p> -foobar<p>Interpreted markdown in a table:</p> -This is <em>emphasized</em>. And this is <strong>strong</strong><p>Here's a simple block:</p> -foo<p>This should be a code block, though:</p> -<pre><code><div> - foo -</div> -</code></pre> -<p>As should this:</p> -<pre><code><div>foo</div> -</code></pre> -<p>Now, nested:</p> -foo<p>This should just be an HTML comment:</p> -<p>Multiline:</p> -<p>Code block:</p> -<pre><code><!-- Comment --> -</code></pre> -<p>Just plain comment, with trailing spaces on the line:</p> -<p>Code:</p> -<pre><code><hr /> -</code></pre> -<p>Hr's:</p> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> -<hr /> <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> |