Justin Mayer f7174a25b4 headerid plugin is less relevant for Markdown 9 anos atrás
..
README.rst f7174a25b4 headerid plugin is less relevant for Markdown 9 anos atrás
__init__.py 64e96e1de3 Add headerid plugin. 9 anos atrás
headerid.py 64e96e1de3 Add headerid plugin. 9 anos atrás

README.rst

Pelican ``headerid`` plugin
===========================

This plugin adds an anchor to each heading so you can deep-link to headers.
It is intended for formats such as reStructuredText that do not natively
generate these anchors.

For Markdown, this plugin is less relevant since the Python-Markdown library
includes a Table of Contents extension that will generate link anchors.
To enable the ``toc`` extension, add a line similar to the following example
to your Pelican settings file::

MD_EXTENSIONS = ["codehilite(css_class=highlight)", "extra", "toc"]