From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jisang Yoo Subject: Re: org-export-section-number-format does not work Date: Tue, 9 Jul 2013 04:57:45 +0900 Message-ID: References: <87pputfpdo.fsf@bzg.ath.cx> <87d2qtfomo.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UwHZG-0004dU-7c for emacs-orgmode@gnu.org; Mon, 08 Jul 2013 15:57:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UwHZC-0003p7-2v for emacs-orgmode@gnu.org; Mon, 08 Jul 2013 15:57:50 -0400 In-Reply-To: <87d2qtfomo.fsf@bzg.ath.cx> 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: Bastien Cc: emacs-orgmode On Mon, Jul 8, 2013 at 5:21 PM, Bastien wrote: > Hi Jisang, > > Jisang Yoo writes: > >> There seems no new option that can be found from exploring >> customization group org-export. > > You can check `org-html-format-headline-function' and its docstring > as an example on how to customize the display of headlines in HTML. > There are similar variables for other backends. > > HTH, > > -- > Bastien (setq org-html-format-headline-function 'my-org-html-format-headline) (defun my-org-html-format-headline (todo todo-type priority text tags) "Returns foo." "foo") results in wrong-number-of-arguments error when I export to html. (setq org-html-format-headline-function 'org-html-format-headline) also results in the same kind of error.