From 4c611b4a2c69f430789a46fa29811f580811da48 Mon Sep 17 00:00:00 2001 From: LongHairedHacker Date: Sun, 12 Jan 2020 15:37:34 +0100 Subject: [PATCH] Changed default format to markdown --- conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index ab9e326..94dc0ef 100644 --- a/conf.py +++ b/conf.py @@ -220,15 +220,15 @@ THEME_CONFIG = { # ) POSTS = ( - ("posts/*.rst", "posts", "post.tmpl"), ("posts/*.md", "posts", "post.tmpl"), + ("posts/*.rst", "posts", "post.tmpl"), ("posts/*.txt", "posts", "post.tmpl"), ("posts/*.html", "posts", "post.tmpl"), ) PAGES = ( + ("pages/*.md", "", "page.tmpl"), ("pages/36c3/*.md", "", "page_36c3.tmpl"), ("pages/*.rst", "", "page.tmpl"), - ("pages/*.md", "", "page.tmpl"), ("pages/*.txt", "", "page.tmpl"), ("pages/*.html", "", "page.tmpl"), ) @@ -294,8 +294,8 @@ TIMEZONE = "Europe/Berlin" # 'markdown' is Markdown # 'html' assumes the file is HTML and just copies it COMPILERS = { - "rest": ('.rst', '.txt'), "markdown": ('.md', '.mdown', '.markdown'), + "rest": ('.rst', '.txt'), "textile": ('.textile',), "txt2tags": ('.t2t',), "bbcode": ('.bb',),