Skip to content

Commit 09a9092

Browse files
committedJan 1, 2016
Accept HTML posts and pages by default
1 parent e068305 commit 09a9092

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎nikola/plugins/command/init.py

+2
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,12 @@
7575
'POSTS': """(
7676
("posts/*.rst", "posts", "post.tmpl"),
7777
("posts/*.txt", "posts", "post.tmpl"),
78+
("posts/*.html", "posts", "post.tmpl"),
7879
)""",
7980
'PAGES': """(
8081
("stories/*.rst", "stories", "story.tmpl"),
8182
("stories/*.txt", "stories", "story.tmpl"),
83+
("stories/*.html", "stories", "story.tmpl"),
8284
)""",
8385
'COMPILERS': """{
8486
"rest": ('.rst', '.txt'),

0 commit comments

Comments
 (0)
Failed to load comments.