Using Tables in markdown with Pelican
web-dev ~ 2017-05-12This 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':{},
}
}