Skip to content

Commit

Permalink
Merge pull request #2822 from getnikola/enable-md-by-default
Browse files Browse the repository at this point in the history
Enable md by default
  • Loading branch information
Kwpolska committed Jun 5, 2017
2 parents 7a3fac8 + bb1560a commit 105581d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -4,6 +4,7 @@ New in master
Features
--------

* Enable markdown by default (part of Issue #2809)
* Allowing to register filters from plugins, and allowing to specify default
filters as strings of the form ``filters.<name>`` (part of Issue #2475)
* Support ignoring assets via ``ignore_assets`` theme meta field
Expand Down
2 changes: 2 additions & 0 deletions nikola/plugins/command/init.py
Expand Up @@ -74,11 +74,13 @@
'FEED_READ_MORE_LINK': DEFAULT_FEED_READ_MORE_LINK,
'POSTS': """(
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.md", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.html", "posts", "post.tmpl"),
)""",
'PAGES': """(
("pages/*.rst", "pages", "page.tmpl"),
("pages/*.md", "pages", "page.tmpl"),
("pages/*.txt", "pages", "page.tmpl"),
("pages/*.html", "pages", "page.tmpl"),
)""",
Expand Down
1 change: 0 additions & 1 deletion requirements-extras.txt
@@ -1,5 +1,4 @@
-r requirements.txt
Markdown>=2.4.0
Jinja2>=2.7.2
husl>=4.0.2
pyphen>=0.9.1
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -3,6 +3,7 @@ Pillow>=2.4.0
python-dateutil>=2.4.0
docutils>=0.12
mako>=1.0.0
Markdown>=2.4.0
unidecode>=0.04.16
lxml>=3.3.5
Yapsy>=1.11.223
Expand Down

0 comments on commit 105581d

Please sign in to comment.