We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a Pelican 3.7, the MD_EXTENSIONS is deprecated, then we need use MARKDOWN instead. But, the extract_toc's documentation is outdated:
MD_EXTENSIONS
MARKDOWN
To enable table of contents generation for the Markdown reader you need to set MD_EXTENSIONS = (['toc']) in your Pelican configuration file.
And I don't know how to use MARKDOWN. How to solve this?
The text was updated successfully, but these errors were encountered:
Update. Using MARKDOWN = {'extensions': ['toc']} I can execute the plugin. But, this causes bug in my codes inside tag ```.
MARKDOWN = {'extensions': ['toc']}
Sorry, something went wrong.
@macabeus: Were you able to find a solution to your problem here?
It seems to work if you take the default MARKDOWN setting and add the extract_toc to it: I took the MARKDOWN from the documentation http://docs.getpelican.com/en/3.7.1/settings.html?highlight=MARKDOWN
extract_toc
MARKDOWN = { 'extension_configs': { 'markdown.extensions.codehilite': {'css_class': 'highlight'}, 'markdown.extensions.extra': {}, 'markdown.extensions.meta': {}, }, 'output_format': 'html5', 'extensions' : ['toc'] }
No branches or pull requests
As a Pelican 3.7, the
MD_EXTENSIONS
is deprecated, then we need useMARKDOWN
instead. But, the extract_toc's documentation is outdated:And I don't know how to use
MARKDOWN
. How to solve this?The text was updated successfully, but these errors were encountered: