README.rst 562 B

1234567891011121314
  1. Pelican ``headerid`` plugin
  2. ===========================
  3. This plugin adds an anchor to each heading so you can deep-link to headers.
  4. It is intended for formats such as reStructuredText that do not natively
  5. generate these anchors.
  6. For Markdown, this plugin is less relevant since the Python-Markdown library
  7. includes a Table of Contents extension that will generate link anchors.
  8. To enable the ``toc`` extension, add a line similar to the following example
  9. to your Pelican settings file::
  10. MD_EXTENSIONS = ["codehilite(css_class=highlight)", "extra", "toc"]