diff options
Diffstat (limited to 'tests/writer.html')
-rw-r--r-- | tests/writer.html | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/tests/writer.html b/tests/writer.html index 6724fc97e..371e8e17a 100644 --- a/tests/writer.html +++ b/tests/writer.html @@ -32,8 +32,11 @@ <hr /> <h1 id="block-quotes">Block Quotes</h1> <p>E-mail style:</p> -<blockquote><p>This is a block quote. It is pretty short.</p></blockquote> -<blockquote><p>Code in a block quote:</p> +<blockquote> +<p>This is a block quote. It is pretty short.</p> +</blockquote> +<blockquote> +<p>Code in a block quote:</p> <pre><code>sub status { print "working"; } @@ -44,8 +47,13 @@ <li>item two</li> </ol> <p>Nested block quotes:</p> -<blockquote><p>nested</p></blockquote> -<blockquote><p>nested</p></blockquote></blockquote> +<blockquote> +<p>nested</p> +</blockquote> +<blockquote> +<p>nested</p> +</blockquote> +</blockquote> <p>This should not be a block quote: 2 > 1.</p> <p>And a following paragraph.</p> <hr /> @@ -262,7 +270,9 @@ These should not be escaped: \$ \\ \> \[ \{ <dd><p>orange fruit</p> <pre><code>{ orange code block } </code></pre> -<blockquote><p>orange block quote</p></blockquote> +<blockquote> +<p>orange block quote</p> +</blockquote> </dd> </dl> <p>Multiple definitions, tight:</p> @@ -523,7 +533,9 @@ h='nowhere.net';a='@'; document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'">'+'<code>'+e+'</code>'+'<\/'+'a'+'>'); // --> </script><noscript>nobody at nowhere dot net</noscript></p> -<blockquote><p>Blockquoted: <a href="http://example.com/"><code class="url">http://example.com/</code></a></p></blockquote> +<blockquote> +<p>Blockquoted: <a href="http://example.com/"><code class="url">http://example.com/</code></a></p> +</blockquote> <p>Auto-links should not occur here: <code><http://example.com/></code></p> <pre><code>or here: <http://example.com/> </code></pre> @@ -537,7 +549,9 @@ document.write('<a h'+'ref'+'="ma'+'ilto'+':'+e+'">'+'<code>'+e+'</code>'+'<\/'+ <hr /> <h1 id="footnotes">Footnotes</h1> <p>Here is a footnote reference,<sup><a href="#fn1" class="footnoteRef" id="fnref1">1</a></sup> and another.<sup><a href="#fn2" class="footnoteRef" id="fnref2">2</a></sup> This should <em>not</em> be a footnote reference, because it contains a space.[^my note] Here is an inline note.<sup><a href="#fn3" class="footnoteRef" id="fnref3">3</a></sup></p> -<blockquote><p>Notes can go in quotes.<sup><a href="#fn4" class="footnoteRef" id="fnref4">4</a></sup></p></blockquote> +<blockquote> +<p>Notes can go in quotes.<sup><a href="#fn4" class="footnoteRef" id="fnref4">4</a></sup></p> +</blockquote> <ol style="list-style-type: decimal"> <li>And in list items.<sup><a href="#fn5" class="footnoteRef" id="fnref5">5</a></sup></li> </ol> |