aboutsummaryrefslogtreecommitdiff
path: root/pelicanconf.py
diff options
context:
space:
mode:
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index e85d4e1..c974eb5 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -64,3 +64,15 @@ ARTICLE_URL = "{slug}"
ARTICLE_SAVE_AS = "{slug}/index.html"
PAGE_URL = "pages/{slug}"
PAGE_SAVE_AS = "pages/{slug}/index.html"
+
+# Enable Markdown tables support.
+
+MARKDOWN = {
+ "extension_configs": {
+ "markdown.extensions.codehilite": {"css_class": "highlight"},
+ "markdown.extensions.extra": {},
+ "markdown.extensions.meta": {},
+ "markdown.extensions.tables": {},
+ },
+ "output_format": "html5",
+}