Andrei Jirnyi <[email protected]> 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
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode