promote .md extensions

This commit is contained in:
Frank Taillandier 2016-09-02 11:17:23 +02:00
parent 45aac995d8
commit 63595f388d
2 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ file. For example, the following are examples of valid post filenames:
```sh ```sh
2011-12-31-new-years-eve-is-awesome.md 2011-12-31-new-years-eve-is-awesome.md
2012-09-12-how-to-write-a-blog.textile 2012-09-12-how-to-write-a-blog.md
``` ```
<div class="note"> <div class="note">

View File

@ -18,8 +18,8 @@ A basic Jekyll site usually looks something like this:
. .
├── _config.yml ├── _config.yml
├── _drafts ├── _drafts
| ├── begin-with-the-crazy-ideas.textile | ├── begin-with-the-crazy-ideas.md
| └── on-simplicity-in-technology.markdown | └── on-simplicity-in-technology.md
├── _includes ├── _includes
| ├── footer.html | ├── footer.html
| └── header.html | └── header.html
@ -27,8 +27,8 @@ A basic Jekyll site usually looks something like this:
| ├── default.html | ├── default.html
| └── post.html | └── post.html
├── _posts ├── _posts
| ├── 2007-10-29-why-every-programmer-should-play-nethack.textile | ├── 2007-10-29-why-every-programmer-should-play-nethack.md
| └── 2009-04-26-barcamp-boston-4-roundup.textile | └── 2009-04-26-barcamp-boston-4-roundup.md
├── _data ├── _data
| └── members.yml | └── members.yml
├── _site ├── _site