Daniel Clemente <n142...@gmail.com> writes: > Hi. With latest org I'm getting <li><p>…</p></li>, which makes no sense; it > should be <li>…</li> > Aren't there tests to find this type of breakages in export? > > > Example: > > - hola > - uno > - dos > - tres > > > Is exported to: > > > <ul class="org-ul"> > <li><p> > hola > </p> > </li> > <li><p> > uno > </p> > <ul class="org-ul"> > <li>dos > </li> > </ul> > </li> > <li><p> > tres > </p> > </li> > </ul>
Confirmed. Bisection fingers this commit: ,---- | 1c3bdbb80a143664ca719a8a8b439390c42e28a2 is the first bad commit | commit 1c3bdbb80a143664ca719a8a8b439390c42e28a2 | Author: Eric Schulte <schulte.e...@gmail.com> | Date: Mon Jun 23 17:33:18 2014 -0400 | | inhibit <p> wraps on a whole-list basis | | * lisp/ox-html.el (org-html-paragraph): Extend the special case of | inhibiting <p> wrappers to only perform such inhibition when *every* | element of the list is a single paragraph long. Otherwise unsightly | spacing results. `---- -- Nick