From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jisang Yoo Subject: org-export-section-number-format does not work Date: Mon, 8 Jul 2013 04:40:29 +0900 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uvup0-0005CF-GV for emacs-orgmode@gnu.org; Sun, 07 Jul 2013 15:40:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uvuow-00012h-QK for emacs-orgmode@gnu.org; Sun, 07 Jul 2013 15:40:34 -0400 Received: from mail-qc0-x231.google.com ([2607:f8b0:400d:c01::231]:64558) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uvuow-00012d-Mo for emacs-orgmode@gnu.org; Sun, 07 Jul 2013 15:40:30 -0400 Received: by mail-qc0-f177.google.com with SMTP id n1so1907925qcx.8 for ; Sun, 07 Jul 2013 12:40:29 -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 Org-mode version 8.0.5 (latest) Test done with this command: emacs -q --load ~/t/org-test-final.el Contents of ~/t/org-test-final.el: (setq package-load-list '((org t) (org-plus-contrib t))) (setq org-export-section-number-format '((("I" ".")) . ".")) (package-initialize) (find-file "~/t/simple.org") Contents of ~/t/simple.org: * one ** two *** three In the test emacs session, press C-c C-e (org-export-dispatch) then press h o to open the exported html in the browser. The section numbers are shown as 1 and 1.1 and 1.1.1 when they should be, I guess, I. and I.I. and I.I.I. Same result with this too: (setq package-load-list '((org t))) (custom-set-variables '(org-export-section-number-format (quote ((("1" ".")) . ".")))) (package-initialize) (find-file "~/t/simple.org") C-h v cannot find the variable org-export-section-number-format but M-x customize-group RET org-export-general RET shows its documentation, after that C-h v shows it is defined in org-exp.el which is a file bundled with Emacs, and is not part of the latest org package.