From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: HTML export / list issues Date: Fri, 21 Aug 2015 13:58:05 +0300 Message-ID: <87pp2gsybm.fsf@iki.fi> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSk3M-0006ZB-6q for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 07:00:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZSk3I-0006QC-VL for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 07:00:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:60865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSk3I-0006Lu-EF for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 07:00:04 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZSk3G-0007Mu-Rk for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 13:00:02 +0200 Received: from 89-27-26-138.bb.dnainternet.fi ([89.27.26.138]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 21 Aug 2015 13:00:02 +0200 Received: from jarmo.hurri by 89-27-26-138.bb.dnainternet.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 21 Aug 2015 13:00:02 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Greetings. Below is a (hopefully) self-explanatory org file of my problem and the associated html export. Jarmo * Problem description The examples below illustrate three problems I have with lists and html export at the moment. 1. lists alphabetized in org are enumerated in html 2. code evaluation breaks list continuation 3. centering of raw html does not work using begin center and end center * Example I am making a hierarchical list with some code in it. 1. level 1 first a) level 2 first; I was hoping this would be alphabetized in html like it is in org, but it is still enumerated b) the next item has some code in it; it has been evaluated with C-c C-c to obtain the result c) #+BEGIN_SRC elisp :exports results (+ 1 2) #+END_SRC #+RESULTS: : 3 d) and due to the way the results of the evaluation are inserted, the code interrupts enumeration in the exported list, and it even breaks the high-level list in the org mode itself 2. here is another element with some code; I am trying to center the result of the evalution of this code in html #+NAME: code-example #+BEGIN_SRC elisp :exports results :results raw (- 9 14) #+END_SRC #+BEGIN_CENTER #+RESULTS: code-example -5 #+END_CENTER 3. but for some reason the result is not centered --=-=-= Content-Type: text/html Content-Disposition: attachment; filename=list-html-test.html Content-Description: export

1 Problem description

The examples below illustrate three problems I have with lists and html export at the moment.

  1. lists alphabetized in org are enumerated in html
  2. code evaluation breaks list continuation
  3. centering of raw html does not work using begin center and end center

2 Example

I am making a hierarchical list with some code in it.

  1. level 1 first
    1. level 2 first; I was hoping this would be alphabetized in html like it is in org, but it is still enumerated
    2. the next item has some code in it; it has been evaluated with C-c C-c to obtain the result
3
  1. and due to the way the results of the evaluation are inserted, the code interrupts enumeration in the exported list, and it even breaks the high-level list in the org mode itself
  1. here is another element with some code; I am trying to center the result of the evalution of this code in html

    -5

  2. but for some reason the result is not centered

Author: Jarmo Hurri

Created: 2015-08-21 Fri 13:56

Validate

--=-=-=-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: HTML export / list issues Date: Fri, 21 Aug 2015 14:58:35 +0200 Message-ID: <87fv3col1g.fsf@nicolasgoaziou.fr> References: <87pp2gsybm.fsf@iki.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSlsR-00077p-Rk for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 08:57:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZSlsQ-0001FY-Nt for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 08:56:59 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:46712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSlsQ-0001Eu-GH for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 08:56:58 -0400 In-Reply-To: <87pp2gsybm.fsf@iki.fi> (Jarmo Hurri's message of "Fri, 21 Aug 2015 13:58:05 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jarmo Hurri Cc: emacs-orgmode@gnu.org Hello, Jarmo Hurri writes: > Below is a (hopefully) self-explanatory org file of my problem and the > associated html export. > > Jarmo > > * Problem description > The examples below illustrate three problems I have with lists and > html export at the moment. > 1. lists alphabetized in org are enumerated in html Actually this is a wrong assumption. Org only distinguishes enumerated, itemized and description lists. There are no sub-categories. In the buffer, you may write an enumerated list item "1.", "1)", "a.", "A.", "a)" or "A)", but they are all the same. For this kind of thing, setting an appropriate CSS could be an option. > 2. code evaluation breaks list continuation > 3. centering of raw html does not work using begin center and > end center > * Example > I am making a hierarchical list with some code in it. > 1. level 1 first > a) level 2 first; I was hoping this would be alphabetized in html > like it is in org, but it is still enumerated > b) the next item has some code in it; it has been evaluated with > C-c C-c to obtain the result > c) > #+BEGIN_SRC elisp :exports results > (+ 1 2) > #+END_SRC > > #+RESULTS: > : 3 This is because "a)" is not recognized as a list item in your buffer. Make sure you have a non-nil 'org-list-allow-alphabetical' and `org-plain-list-ordered-item-terminator' is either t or ?). These variables need to be set before Org is loaded. If you set them in current session, make sure to reload Org. > 2. here is another element with some code; I am trying to center the > result of the evalution of this code in html > #+NAME: code-example > #+BEGIN_SRC elisp :exports results :results raw > (- 9 14) #+END_SRC > > #+BEGIN_CENTER > #+RESULTS: code-example > -5 > #+END_CENTER > 3. but for some reason the result is not centered This generates

-5

perhaps someone more versed in HTML could tell what is wrong here. Regards, -- Nicolas Goaziou From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: Re: HTML export / list issues Date: Fri, 21 Aug 2015 15:58:43 -0400 Message-ID: <20150821195843.GA4063@eyeBook.home> References: <87pp2gsybm.fsf@iki.fi> <87fv3col1g.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSsXd-000271-7T for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 16:03:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZSsXZ-0006bs-So for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 16:03:57 -0400 Received: from mail.rickster.com ([204.62.15.78]:49589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZSsXZ-0006bk-Pi for emacs-orgmode@gnu.org; Fri, 21 Aug 2015 16:03:53 -0400 Content-Disposition: inline In-Reply-To: <87fv3col1g.fsf@nicolasgoaziou.fr> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Jarmo Hurri On Fri, Aug 21, 2015 at 02:58:35PM +0200, Nicolas Goaziou wrote: > Hello, > > Jarmo Hurri writes: > > > Below is a (hopefully) self-explanatory org file of my problem and the > > associated html export. > > > > Jarmo > > > > * Problem description > > The examples below illustrate three problems I have with lists and > > html export at the moment. > > 1. lists alphabetized in org are enumerated in html > > Actually this is a wrong assumption. Org only distinguishes enumerated, > itemized and description lists. There are no sub-categories. > > In the buffer, you may write an enumerated list item "1.", "1)", "a.", > "A.", "a)" or "A)", but they are all the same. > > For this kind of thing, setting an appropriate CSS could be an option. Correct. try ~list-style-type: lower-alpha;~ in your css to get lowercase alphanumeric labels for an enumerated list (~
    ~). > > 2. code evaluation breaks list continuation > > 3. centering of raw html does not work using begin center and > > end center > > * Example > > I am making a hierarchical list with some code in it. > > 1. level 1 first > > a) level 2 first; I was hoping this would be alphabetized in html > > like it is in org, but it is still enumerated > > b) the next item has some code in it; it has been evaluated with > > C-c C-c to obtain the result > > c) > > #+BEGIN_SRC elisp :exports results > > (+ 1 2) > > #+END_SRC > > > > #+RESULTS: > > : 3 > > This is because "a)" is not recognized as a list item in your buffer. > > Make sure you have a non-nil `org-list-allow-alphabetical' and > `org-plain-list-ordered-item-terminator' is either t or ?). These > variables need to be set before Org is loaded. If you set them in > current session, make sure to reload Org. > > > 2. here is another element with some code; I am trying to center the > > result of the evalution of this code in html > > #+NAME: code-example > > #+BEGIN_SRC elisp :exports results :results raw > > (- 9 14) #+END_SRC > > > > #+BEGIN_CENTER > > #+RESULTS: code-example > > -5 > > #+END_CENTER > > 3. but for some reason the result is not centered > > This generates > >
    >

    > -5 >

    >
    > > perhaps someone more versed in HTML could tell what is wrong here. I would assume it's because there is no css for ~div.center~. Try (untested): div.center > p { text-align: center; } Note that this will center each line, separately. To center the entire paragraph as a block is more complex. This will do if if you specify the paragraph width. div.center > p { margin-left: auto; margin-right: auto; width: {X}em; } See http://www.w3.org/Style/Examples/007/center#viewport3 for a CSS3 (less backward compatible) approach. that doesn't require setting the width of the paragraph. I usually just set a left margin or padding as opposed to trying to float the block in the middle. (e.g. ~margin-left: 2em~.) rick From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Re: HTML export / list issues Date: Sun, 23 Aug 2015 17:09:05 +0300 Message-ID: <87wpwm85by.fsf@iki.fi> References: <87pp2gsybm.fsf@iki.fi> <87fv3col1g.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48477) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTVxZ-0001FH-Iy for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 10:09:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTVxW-0000Jl-Ar for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 10:09:21 -0400 Received: from plane.gmane.org ([80.91.229.3]:48409) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTVxW-0000J0-2w for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 10:09:18 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZTVxU-0008Sv-EX for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 16:09:16 +0200 Received: from 89-27-26-138.bb.dnainternet.fi ([89.27.26.138]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Aug 2015 16:09:16 +0200 Received: from jarmo.hurri by 89-27-26-138.bb.dnainternet.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Aug 2015 16:09:16 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Greetings Nicolas and thank you for your prompt response. Nicolas Goaziou writes: >> * Example >> I am making a hierarchical list with some code in it. >> 1. level 1 first >> a) level 2 first; I was hoping this would be alphabetized in html >> like it is in org, but it is still enumerated >> b) the next item has some code in it; it has been evaluated with >> C-c C-c to obtain the result >> c) >> #+BEGIN_SRC elisp :exports results >> (+ 1 2) >> #+END_SRC >> >> #+RESULTS: >> : 3 > > This is because "a)" is not recognized as a list item in your buffer. > > Make sure you have a non-nil 'org-list-allow-alphabetical' and > `org-plain-list-ordered-item-terminator' is either t or ?). These > variables need to be set before Org is loaded. If you set them in > current session, make sure to reload Org. For some reason I can not reproduce your solution. I already had (setq org-list-allow-alphabetical t), and now I added (setq org-plain-list-ordered-item-terminator t), and still the following happens (and the list is broken in html export): ====================================================================== 1. level 1 first a) level 2 first; I was hoping this would be alphabetized in html like it is in org, but it is still enumerated b) the next item has some code in it; it has been evaluated with C-c C-c to obtain the result c) #+BEGIN_SRC elisp :exports results (print (list org-plain-list-ordered-item-terminator org-list-allow-alphabetical (+ 1 2))) #+END_SRC #+RESULTS: | t | t | 3 | d) and due to the way the results of the evaluation are inserted, the code interrupts enumeration in the exported list, and it even breaks the high-level list in the org mode itself ====================================================================== >> The examples below illustrate three problems I have with lists and >> html export at the moment. 1. lists alphabetized in org are >> enumerated in html > > Actually this is a wrong assumption. Org only distinguishes > enumerated, itemized and description lists. There are no > sub-categories. ... For this kind of thing, setting an appropriate > CSS could be an option. Ok; I already noticed that someone suggested a specific solution. >> 2. here is another element with some code; I am trying to center the >> result of the evalution of this code in html >> #+NAME: code-example >> #+BEGIN_SRC elisp :exports results :results raw >> (- 9 14) #+END_SRC >> >> #+BEGIN_CENTER >> #+RESULTS: code-example >> -5 >> #+END_CENTER >> 3. but for some reason the result is not centered > > This generates > >
    >

    > -5 >

    >
    > > perhaps someone more versed in HTML could tell what is wrong here. Also, for this, someone gave detailed pointers above. Thanks! Jarmo From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Re: HTML export / list issues Date: Sun, 23 Aug 2015 18:07:56 +0300 Message-ID: <87si7a82lv.fsf@iki.fi> References: <87pp2gsybm.fsf@iki.fi> <87fv3col1g.fsf@nicolasgoaziou.fr> <20150821195843.GA4063@eyeBook.home> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60090) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTWsS-00055N-KY for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 11:08:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTWsP-0005mn-A0 for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 11:08:08 -0400 Received: from plane.gmane.org ([80.91.229.3]:50432) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTWsP-0005mM-3D for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 11:08:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZTWsM-0008I4-U2 for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 17:08:02 +0200 Received: from 89-27-26-138.bb.dnainternet.fi ([89.27.26.138]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Aug 2015 17:08:02 +0200 Received: from jarmo.hurri by 89-27-26-138.bb.dnainternet.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 23 Aug 2015 17:08:02 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Rick Frankel writes: >> > * Problem description >> > The examples below illustrate three problems I have with lists and >> > html export at the moment. >> > 1. lists alphabetized in org are enumerated in html >> >> Actually this is a wrong assumption. Org only distinguishes enumerated, >> itemized and description lists. There are no sub-categories. >> >> In the buffer, you may write an enumerated list item "1.", "1)", "a.", >> "A.", "a)" or "A)", but they are all the same. >> >> For this kind of thing, setting an appropriate CSS could be an option. > > Correct. try ~list-style-type: lower-alpha;~ in your css to get > lowercase alphanumeric labels for an enumerated list (~
      ~). Brilliant. Actually, even better, from here http://stackoverflow.com/questions/12787342/nested-list-styling-how-to-separate-styles I adopted the following, which produces alphanumeric labels only in the second level: ol li ol { list-style-type: lower-alpha; } >> > 2. here is another element with some code; I am trying to center the >> > result of the evalution of this code in html >> > #+NAME: code-example >> > #+BEGIN_SRC elisp :exports results :results raw >> > (- 9 14) #+END_SRC >> > >> > #+BEGIN_CENTER >> > #+RESULTS: code-example >> > -5 >> > #+END_CENTER >> > 3. but for some reason the result is not centered >> >> This generates >> >>
      >>

      >> -5 >>

      >>
      >> >> perhaps someone more versed in HTML could tell what is wrong here. > > I would assume it's because there is no css for ~div.center~. Try (untested): > > div.center > p { text-align: center; } > > Note that this will center each line, separately. ... My centered elements are actually canvases (the example here was simplified), but with a bit of digging the following CSS worked for me (I just dropped the centerings from the org code and centered all canvases): canvas { display: block; margin: 0 auto; } Thanks! Jarmo From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: HTML export / list issues Date: Sun, 23 Aug 2015 23:47:05 +0200 Message-ID: <87bndxznhi.fsf@nicolasgoaziou.fr> References: <87pp2gsybm.fsf@iki.fi> <87fv3col1g.fsf@nicolasgoaziou.fr> <87wpwm85by.fsf@iki.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53179) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTd4x-00046h-Mh for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 17:45:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTd4w-0005Ur-L1 for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 17:45:27 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:37696) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTd4w-0005Ud-DM for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 17:45:26 -0400 In-Reply-To: <87wpwm85by.fsf@iki.fi> (Jarmo Hurri's message of "Sun, 23 Aug 2015 17:09:05 +0300") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jarmo Hurri Cc: emacs-orgmode@gnu.org Jarmo Hurri writes: > For some reason I can not reproduce your solution. I already had (setq > org-list-allow-alphabetical t), and now I added (setq > org-plain-list-ordered-item-terminator t), and still the following > happens (and the list is broken in html export): > > ====================================================================== > 1. level 1 first > a) level 2 first; I was hoping this would be alphabetized in html > like it is in org, but it is still enumerated > b) the next item has some code in it; it has been evaluated with > C-c C-c to obtain the result > c) > #+BEGIN_SRC elisp :exports results > (print (list org-plain-list-ordered-item-terminator > org-list-allow-alphabetical > (+ 1 2))) > #+END_SRC > > #+RESULTS: > | t | t | 3 | > > d) and due to the way the results of the evaluation are inserted, > the code interrupts enumeration in the exported list, and it > even breaks the high-level list in the org mode itself > ====================================================================== I realize this is because you are indenting with TABs. I overlooked it in your first report. The issue is now fixed. Thank you. Regards, From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Re: HTML export / list issues Date: Mon, 24 Aug 2015 08:15:11 +0300 Message-ID: <87vbc59sio.fsf@iki.fi> References: <87pp2gsybm.fsf@iki.fi> <87fv3col1g.fsf@nicolasgoaziou.fr> <87wpwm85by.fsf@iki.fi> <87bndxznhi.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTk6U-0006pt-4g for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 01:15:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTk6O-0000kY-3w for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 01:15:30 -0400 Received: from plane.gmane.org ([80.91.229.3]:50547) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTk6N-0000kA-Sj for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 01:15:24 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZTk6L-0003m8-Sz for emacs-orgmode@gnu.org; Mon, 24 Aug 2015 07:15:21 +0200 Received: from host-137-163-18-130.edu.hel.fi ([137.163.18.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Aug 2015 07:15:21 +0200 Received: from jarmo.hurri by host-137-163-18-130.edu.hel.fi with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 24 Aug 2015 07:15:21 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Goaziou writes: >> ====================================================================== >> 1. level 1 first >> a) level 2 first; I was hoping this would be alphabetized in html >> like it is in org, but it is still enumerated >> b) the next item has some code in it; it has been evaluated with >> C-c C-c to obtain the result >> c) >> #+BEGIN_SRC elisp :exports results >> (print (list org-plain-list-ordered-item-terminator >> org-list-allow-alphabetical >> (+ 1 2))) >> #+END_SRC >> >> #+RESULTS: >> | t | t | 3 | >> >> d) and due to the way the results of the evaluation are inserted, >> the code interrupts enumeration in the exported list, and it >> even breaks the high-level list in the org mode itself >> ====================================================================== > > I realize this is because you are indenting with TABs. I overlooked it > in your first report. The issue is now fixed. Thank you. Your fix corrected both this example and the more complicated one I am working on at the moment. Thank you very much. Jarmo