diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2004-10-21 02:17:23 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2004-10-21 02:17:23 +0000 |
| commit | d2a71b8f0de0ef579788dcbdcdae44efe3a7faf6 (patch) | |
| tree | 1f17e55af5926386a46cbb4da5e3058f01ce3d4d /docutils/test/functional/expected | |
| parent | 3a47bbe523f3d4d1b244ad834bdd1d7869f6201b (diff) | |
| download | docutils-d2a71b8f0de0ef579788dcbdcdae44efe3a7faf6.tar.gz | |
reduced vertical space in compound blocks in HTML
by adding compound-{first,middle,last} classes
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@2751 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/functional/expected')
| -rw-r--r-- | docutils/test/functional/expected/standalone_rst_html4css1.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docutils/test/functional/expected/standalone_rst_html4css1.html b/docutils/test/functional/expected/standalone_rst_html4css1.html index 13172ada9..ddf416889 100644 --- a/docutils/test/functional/expected/standalone_rst_html4css1.html +++ b/docutils/test/functional/expected/standalone_rst_html4css1.html @@ -630,40 +630,40 @@ background color.</p> <div class="section" id="compound-paragraph"> <h3><a class="toc-backref" href="#id65" name="compound-paragraph">2.14.7 Compound Paragraph</a></h3> <div class="some-class compound"> -<p>Compound 1, paragraph 1.</p> -<p>Compound 1, paragraph 2.</p> -<ul class="simple"> +<p class="compound-first">Compound 1, paragraph 1.</p> +<p class="compound-middle">Compound 1, paragraph 2.</p> +<ul class="compound-last simple"> <li>Compound 1, list item one.</li> <li>Compound 1, list item two.</li> </ul> </div> <p>Another compound statement:</p> <div class="compound"> -<p>Compound 2, a literal block:</p> -<pre class="literal-block"> +<p class="compound-first">Compound 2, a literal block:</p> +<pre class="compound-middle literal-block"> Compound 2, literal. </pre> -<p>Compound 2, this is a test.</p> +<p class="compound-last">Compound 2, this is a test.</p> </div> <div class="compound"> <p>Compound 3, only consisting of one paragraph.</p> </div> <div class="compound"> -<pre class="literal-block"> +<pre class="compound-first literal-block"> Compound 4. This one starts with a literal block. </pre> -<p>Compound 4, a paragraph.</p> +<p class="compound-last">Compound 4, a paragraph.</p> </div> <p>Now something <em>really</em> perverted -- a nested compound block. In LaTeX, the following paragraphs should all be first-line indented:</p> <div class="compound"> -<p>Compound 5, block 1 (a paragraph).</p> -<div class="compound"> -<p>Compound 6, block 2 in compound 5.</p> -<p>Compound 6, another paragraph.</p> +<p class="compound-first">Compound 5, block 1 (a paragraph).</p> +<div class="compound-middle compound"> +<p class="compound-first">Compound 6, block 2 in compound 5.</p> +<p class="compound-last">Compound 6, another paragraph.</p> </div> -<p>Compound 5, block 3 (a paragraph).</p> +<p class="compound-last">Compound 5, block 3 (a paragraph).</p> </div> </div> </div> |
