mdbook/tests/testsuite/markdown/basic_markdown/expected/blockquotes.html
Eric Huss 03443f723c Add more comprehensive tests for HTML rendering
This adds a bunch of tests to better exercise the HTML rendering and to
be able to track any changes in its behavior.

This includes a new `check_all_main_files` to more conveniently check
the HTML content of every chapter in a book.
2025-09-16 14:07:54 -07:00

44 lines
No EOL
845 B
HTML

<h1 id="blockquotes"><a class="header" href="#blockquotes">Blockquotes</a></h1>
<p>Empty:</p>
<blockquote>
</blockquote>
<p>Normal:</p>
<blockquote>
<p>foo
bar</p>
</blockquote>
<p>Contains code block:</p>
<blockquote>
<pre><pre class="playground"><code class="language-rust"><span class="boring">#![allow(unused)]
</span><span class="boring">fn main() {
</span>let x = 1;
<span class="boring">}</span></code></pre></pre>
</blockquote>
<p>Random stuff:</p>
<blockquote>
<h3 id="and-now"><a class="header" href="#and-now">And now,</a></h3>
<p><strong>Let us <em>introduce</em></strong>
All kinds of</p>
<ul>
<li>tags</li>
<li>etc</li>
<li>stuff</li>
</ul>
<ol>
<li>
<p>In</p>
</li>
<li>
<p>The</p>
</li>
<li>
<p>blockquote</p>
<blockquote>
<p>cause we can</p>
<blockquote>
<p>Cause we can</p>
</blockquote>
</blockquote>
</li>
</ol>
</blockquote>