Not sure if this is a problem with our release note styling or the HTML conversion. > <div class="section" id="changes-in-this-release"> > <h2>Changes in This Release</h2> > <p>In the list below, the bug number is given in parentheses. For more > information, visit <a class="reference external" href="https://www.cendio.com/bugzilla/">https://www.cendio.com/bugzilla/</a>.</p> > <div class="section" id="server"> > <h3>Server</h3> > <blockquote> > <ul class="simple"> [...] > </ul> > </blockquote> > </div>
This happens because the lists were indented in the source material. Here's an example: >- L1 >- L1 > > - L2 > - L2 And here's the result: > <ul class="simple"> > <li>L1</li> > <li>L1</li> > </ul> > <blockquote> > <ul class="simple"> > <li>L2</li> > <li>L2</li> > </ul> > </blockquote>
Looks good. The lists are much more sane now, and I couldn't spot any other formatting errors.