* Headlines export problem
@ 2011-02-18 15:23 PASZTOR Miklos
2011-02-19 11:22 ` Nicolas
2011-03-02 17:48 ` Bastien
0 siblings, 2 replies; 5+ messages in thread
From: PASZTOR Miklos @ 2011-02-18 15:23 UTC (permalink / raw)
To: emacs-orgmode
Hello,
I'm using org-mode version 7.4. When I export org files to html - having
H:2 in the options line - it seems that each third level headline
becomes a *separate* unnumbered list.
Example:
* FIRST HEADLINE
** second
*** These lines will be
*** separate unnumbered lists,
*** not just one.
Becomes:
<ul>
<li id="sec-1_1_1">These lines will be <br/>
</li>
</ul>
<ul>
<li id="sec-1_1_2">separate unnumbered lists <br/>
</li>
</ul>
<ul>
<li id="sec-1_1_3">Not just one <br/>
Can I have orgmode to create a *single* unnumbered list from the third level
headlines above?
Regards,
Miklós
--
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Headlines export problem
2011-02-18 15:23 Headlines export problem PASZTOR Miklos
@ 2011-02-19 11:22 ` Nicolas
2011-03-02 17:48 ` Bastien
1 sibling, 0 replies; 5+ messages in thread
From: Nicolas @ 2011-02-19 11:22 UTC (permalink / raw)
To: PASZTOR Miklos; +Cc: emacs-orgmode
Hello,
PASZTOR Miklos <pasztor@iszt.hu> writes:
> I'm using org-mode version 7.4. When I export org files to html - having
> H:2 in the options line - it seems that each third level headline
> becomes a *separate* unnumbered list.
>
> Example:
>
> * FIRST HEADLINE
> ** second
> *** These lines will be
> *** separate unnumbered lists,
> *** not just one.
>
> Becomes:
>
> <ul>
> <li id="sec-1_1_1">These lines will be <br/>
> </li>
> </ul>
> <ul>
> <li id="sec-1_1_2">separate unnumbered lists <br/>
> </li>
> </ul>
> <ul>
> <li id="sec-1_1_3">Not just one <br/>
>
>
> Can I have orgmode to create a *single* unnumbered list from the third level
> headlines above?
A patch fixing this has been submitted a few days ago.
Regards,
--
Nicolas
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Headlines export problem
2011-02-18 15:23 Headlines export problem PASZTOR Miklos
2011-02-19 11:22 ` Nicolas
@ 2011-03-02 17:48 ` Bastien
2011-03-03 9:10 ` PASZTOR Miklos
1 sibling, 1 reply; 5+ messages in thread
From: Bastien @ 2011-03-02 17:48 UTC (permalink / raw)
To: PASZTOR Miklos; +Cc: emacs-orgmode
Hi,
PASZTOR Miklos <pasztor@iszt.hu> writes:
> I'm using org-mode version 7.4. When I export org files to html - having
> H:2 in the options line - it seems that each third level headline
> becomes a *separate* unnumbered list.
I cannot reproduce this problem with latest Org.
Do you still have it?
--
Bastien
--
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Headlines export problem
2011-03-02 17:48 ` Bastien
@ 2011-03-03 9:10 ` PASZTOR Miklos
2011-03-20 15:23 ` Re: [Orgmode] " David Maus
0 siblings, 1 reply; 5+ messages in thread
From: PASZTOR Miklos @ 2011-03-03 9:10 UTC (permalink / raw)
To: Bastien; +Cc: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 1609 bytes --]
Hello,
Thanks for keeping an eye on this.
Sorry for being silent.
On Wed, Mar 02, 2011 at 06:48:56PM +0100, Bastien wrote:
> Hi,
>
> PASZTOR Miklos <pasztor@iszt.hu> writes:
>
> > I'm using org-mode version 7.4. When I export org files to html - having
> > H:2 in the options line - it seems that each third level headline
> > becomes a *separate* unnumbered list.
>
> I cannot reproduce this problem with latest Org.
>
> Do you still have it?
I do. I have pulled down the latest Org (release_7.4.589.gdc608), and if I
have:
----------------8<---------------------8<----------------------------------------
** Second
*** Third
*** Several
*** Times
----------------8<---------------------8<----------------------------------------
I get:
----------------8<---------------------8<----------------------------------------
<h3 id="sec-1_1">Second </h3>
<div class="outline-text-3" id="text-1_1">
<ul>
<li id="sec-1_1_1">Third <br/>
</li>
</ul>
<ul>
<li id="sec-1_1_2">Several <br/>
</li>
</ul>
<ul>
<li id="sec-1_1_3">Times <br/>
</li>
</ul>
</div>
----------------8<---------------------8<----------------------------------------
Please note the consecutive </ul> <ul> tags.
I can either edit the html file afterwards, or I can write:
----------------8<---------------------8<----------------------------------------
** Second
- Third
- Several
- Times
----------------8<---------------------8<----------------------------------------
Both solve the problem.
Thank you for all your efforts.
Cheers,
Miklós
--
[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
[-- Attachment #2: Type: text/plain, Size: 157 bytes --]
--
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Re: [Orgmode] Headlines export problem
2011-03-03 9:10 ` PASZTOR Miklos
@ 2011-03-20 15:23 ` David Maus
0 siblings, 0 replies; 5+ messages in thread
From: David Maus @ 2011-03-20 15:23 UTC (permalink / raw)
To: PASZTOR Miklos; +Cc: Bastien, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1684 bytes --]
At Thu, 3 Mar 2011 10:10:16 +0100,
PASZTOR Miklos wrote:
>
> Hello,
>
> Thanks for keeping an eye on this.
> Sorry for being silent.
>
> On Wed, Mar 02, 2011 at 06:48:56PM +0100, Bastien wrote:
> > Hi,
> >
> > PASZTOR Miklos <pasztor@iszt.hu> writes:
> >
> > > I'm using org-mode version 7.4. When I export org files to html - having
> > > H:2 in the options line - it seems that each third level headline
> > > becomes a *separate* unnumbered list.
> >
> > I cannot reproduce this problem with latest Org.
> >
> > Do you still have it?
>
> I do. I have pulled down the latest Org (release_7.4.589.gdc608), and if I
> have:
>
> ----------------8<---------------------8<----------------------------------------
> ** Second
> *** Third
> *** Several
> *** Times
> ----------------8<---------------------8<----------------------------------------
>
> I get:
>
> ----------------8<---------------------8<----------------------------------------
> <h3 id="sec-1_1">Second </h3>
> <div class="outline-text-3" id="text-1_1">
>
> <ul>
> <li id="sec-1_1_1">Third <br/>
> </li>
> </ul>
> <ul>
> <li id="sec-1_1_2">Several <br/>
> </li>
> </ul>
> <ul>
> <li id="sec-1_1_3">Times <br/>
> </li>
> </ul>
> </div>
> ----------------8<---------------------8<----------------------------------------
>
> Please note the consecutive </ul> <ul> tags.
I can confirm this with
Org-mode version 7.5 (release_7.5.90.g1fb3)
on
GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0) of
2010-12-11 on raven, modified by Debian
The level 3 headlines should be items of a single list.
Best,
-- David
--
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... dmjena@jabber.org
Email..... dmaus@ictsoc.de
[-- Attachment #2: Type: application/pgp-signature, Size: 230 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-20 15:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-18 15:23 Headlines export problem PASZTOR Miklos
2011-02-19 11:22 ` Nicolas
2011-03-02 17:48 ` Bastien
2011-03-03 9:10 ` PASZTOR Miklos
2011-03-20 15:23 ` Re: [Orgmode] " David Maus
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).