[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] HTML lists are including paragraphs (<li><p>…</p></li>)
From: |
Daniel Clemente |
Subject: |
Re: [O] HTML lists are including paragraphs (<li><p>…</p></li>) |
Date: |
Tue, 26 Aug 2014 14:36:05 +0700 |
User-agent: |
Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/24.4.50 (x86_64-unknown-linux-gnu) MULE/6.0 (HANACHIRUSATO) |
El Mon, 25 Aug 2014 10:30:27 +0200 Nicolas Goaziou va escriure:
> > But why not, as a general rule, avoid <p> for the first elements of
> > lists? That is, don't output paragraph+list+paragraph, but
> > text+list+paragraph.
> > This works for the simple case (<li>text</li>) and allows the
> > complex ones (<li>text<p>aa</p><ol></ol><whatever></whatever></li>).
>
> This was the original behaviour, which was, apparently, unsatisfactory.
> See
>
> http://article.gmane.org/gmane.emacs.orgmode/87898
>
>
Ok, let's keep the complex cases possible, but the simple ones simple. So:
- <li>text</li> and <li>text<ul/></li> if there's only 1 text or sublist or
text+sublist
- <li>[normal flow including p,ol,ul,blockquote,…]</li> in the rest. This
includes <li><p/><p/></li>, <li><p/><ol/><p/></li>, <li><ol><p/></li>,
<li><p/><p/><ol/></li>