Revert "Changed default format to markdown"

This reverts commit 4c611b4a2c.
This commit is contained in:
Sebastian 2021-01-01 16:32:29 +01:00
parent 80bbcc26ae
commit 57f5138069
1 changed files with 3 additions and 3 deletions

View File

@ -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',),