From mboxrd@z Thu Jan 1 00:00:00 1970 From: Josiah Schwab Subject: Ordered List (Alphabetical) and HTML Export Date: Thu, 30 May 2013 11:57:44 -0700 Message-ID: <51a7a129.901a420a.1422.197b@mx.google.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57593) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ui82q-0004cO-RI for emacs-orgmode@gnu.org; Thu, 30 May 2013 14:57:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ui82m-0006RZ-AI for emacs-orgmode@gnu.org; Thu, 30 May 2013 14:57:52 -0400 Received: from mail-pb0-x234.google.com ([2607:f8b0:400e:c01::234]:57562) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ui82m-0006RO-2w for emacs-orgmode@gnu.org; Thu, 30 May 2013 14:57:48 -0400 Received: by mail-pb0-f52.google.com with SMTP id xa12so854347pbc.25 for ; Thu, 30 May 2013 11:57:46 -0700 (PDT) Received: from jschwablaptop.gmail.com (eridanus.Berkeley.EDU. [128.32.15.75]) by mx.google.com with ESMTPSA id l16sm15274007pag.22.2013.05.30.11.57.45 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 30 May 2013 11:57:45 -0700 (PDT) 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 Hi All, I am using orgmode 8.0.3 with emacs 24.3. I frequently use ordered lists with alphabetical bullets. I have (setq org-list-allow-alphabetical t) in my .emacs. I just noticed that when I export an alphabetical list using the HTML exporter, it appears as a numerical list in the rendered HTML. My expectation was that the ol tags for this list would look like
    , but instead they are just plain
      . (At the end of the message is a snippet that lets you reproduce this.) =46rom poking around in ox-html.el (specfically, looking at org-html-begin-plain-list), I see that there is no code that handles the list "type". I spent a few minutes looking at org-list.el, but I'm new enough to both org-mode and elisp, that I couldn't immediately see how to extend org-html-begin-plain-list so that it could figure out the kind of list bullet and properly set the type. Could anyone help walk me through what one would need to do to get the desired behavior of HTML export preserving alphabetically bulleted lists? Best, Josiah Schwab P.S. Here's an example org snippet. * Letters a. foo b. bar c. baz * Numbers 1. foo 2. bar 3. baz