Re: [O] org-export-section-number-format does not work

2013-08-23 Thread Jisang Yoo
On Tue, Jul 9, 2013 at 5:35 AM, Nicolas Goaziou wrote: > > Hello, > > Jisang Yoo writes: > > > (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 wron

Re: [O] org-export-section-number-format does not work

2013-07-09 Thread Bastien
Hi, Nick Dokos writes: > But getting there was not trivial: the CL-isms certainly do not help, > primarily because I had to understand them to figure out what was going > on, but also because they obscured the problem: when I tried to edebug > org-html-format-headline--wrap I get I suggest to g

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Nick Dokos
Jisang Yoo writes: > 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 exa

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Nicolas Goaziou
Hello, Jisang Yoo writes: > (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

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Bastien
Hi Jisang, Jisang Yoo writes: > (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-fo

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Jisang Yoo
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 dis

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Bastien
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 ot

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Jisang Yoo
On Mon, Jul 8, 2013 at 5:05 PM, Bastien wrote: > Hi Jisang, > > Jisang Yoo writes: > >> 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

Re: [O] org-export-section-number-format does not work

2013-07-08 Thread Bastien
Hi Jisang, Jisang Yoo writes: > 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 o

[O] org-export-section-number-format does not work

2013-07-07 Thread Jisang Yoo
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-init