Using Tables in markdown with Pelican



This is a small silly one, however when I first tried to use Markdown tables, they did not render in pelican.

To fix this, add this to your Pelican settings file:

MARKDOWN = {
    'extension_configs': {
        'markdown.extensions.tables':{},
    }
}
Comments are loading... I hope ;)