emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Table of Contents in html export


From: Sebastian Rose
Subject: Re: [Orgmode] Table of Contents in html export
Date: Thu, 26 Aug 2010 17:01:09 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

Andrei Jirnyi <address@hidden> writes:
> Hi all,
>
> Are there any options to modify the table of contents in the exported html
> files (other than whether to show it and to what level)? Or, if there are
> no such options, perhaps I could modify some elisp functions?
>
> Specifically, what I wanted to do was to:
>
> - change its name to just "Contents"
> - put a separator between the TOC and the first section?
>
> If I add smth like
> #+html: <hr>
> at the beginning, it gets inserted between the title and the TOC :(
>
> Thanks!!


M-x customize-variable RET org-export-language-setup RET


...and use CSS to add border and spacing at the bottom:

div#table-of-contents
{
  padding-bottom:30px;
  border-bottom:1px solid #000000;
}


HTH

  Sebastian



reply via email to

[Prev in Thread] Current Thread [Next in Thread]