From 57f513806960436e6224058a14e4ec317f6f4fb0 Mon Sep 17 00:00:00 2001 From: LongHairedHacker Date: Fri, 1 Jan 2021 16:32:29 +0100 Subject: [PATCH] Revert "Changed default format to markdown" This reverts commit 4c611b4a2c69f430789a46fa29811f580811da48. --- conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index 94dc0ef..ab9e326 100644 --- a/conf.py +++ b/conf.py @@ -220,15 +220,15 @@ THEME_CONFIG = { # ) POSTS = ( - ("posts/*.md", "posts", "post.tmpl"), ("posts/*.rst", "posts", "post.tmpl"), + ("posts/*.md", "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 = { - "markdown": ('.md', '.mdown', '.markdown'), "rest": ('.rst', '.txt'), + "markdown": ('.md', '.mdown', '.markdown'), "textile": ('.textile',), "txt2tags": ('.t2t',), "bbcode": ('.bb',),