Changed default format to markdown

This commit is contained in:
Sebastian 2020-01-12 15:37:34 +01:00
parent 34198d5947
commit 4c611b4a2c
1 changed files with 3 additions and 3 deletions

View File

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