Hello all,

I'm using Sphinx 0.6.3. It seems that there is a minor rendering
problem when lists contain code blocks as in the following example:

* Test1
* Test2::

  code

Without the code block you would get this as a result:

<ul class="simple">
<li>Test1</li>
<li>Test2</li>
</ul>

But this is what the output is when the code block is added:

<ul>
<li><p class="first">Test1</p></li>
<li><p class="first">Test2:</p>
<div class="highlight-none"><div class="highlight"><pre>code
</pre></div>
</div>
</li>
</ul>

The '<p class="first">..</p>' addition causes extra space to be added
between the bullet points. I don't think it needs to be there, at
least not on every list item.

- Max

--

You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.


Reply via email to