flex/docs/toc.md
Fidel Ramos a70dd82eb3
Basic style for markdown-generated Table of Contents
This styles a Table of Content (ToC) generated by the markdown toc extension:
https://python-markdown.github.io/extensions/toc/
2022-07-04 11:23:16 +02:00

1 KiB

Table of contents documentation

Markdown

Markdown has a toc extension that can be enabled and used directly. Once enabled just add [TOC] in the markdown document where you want the table of contents to appear.

Configure the toc extension through MARKDOWN setting in pelicanconf.py:

MARKDOWN = {
    "extension_configs": {
        "markdown.extensions.toc": {
            "title": "Table of Contents"
        },
    },
}

Refer to Markdown's toc extension documentation for full settings.

If you use the i18n_subsites plugin you can override the table of contents" title:

import copy

I18N_SUBSITES = {
    "es": {
        "MARKDOWN": copy.deepcopy(MARKDOWN),  # copy to override later
    }
}
I18N_SUBSITES["es"]["MARKDOWN"]["extension_configs"]["markdown.extensions.toc"]["title"] = "Índice de contenidos"