From 0c1af467ac55b81cc642f2430c8e62cc58c22e1b Mon Sep 17 00:00:00 2001 From: Alexandre Arpin Date: Sun, 18 May 2014 15:00:10 -0400 Subject: [PATCH] Updated Task List section to show Nested Task List --- README.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 518fed6..025f57d 100644 --- a/README.md +++ b/README.md @@ -354,21 +354,27 @@ In Issues and Pull requests check boxes can be added with the following syntax ( ``` - [ ] Be awesome -- [ ] Do stuff +- [ ] Prepare dinner + - [ ] Research recipe + - [ ] Buy ingredients + - [ ] Cook recipe - [ ] Sleep ``` -![Task List](http://i.imgur.com/k2qZi56.png) +![Task List](http://i.imgur.com/jJBXhsY.png) When they are clicked, they will be updated in the pure Markdown: ``` - [x] Be awesome -- [x] Do stuff +- [ ] Prepare dinner + - [x] Research recipe + - [x] Buy ingredients + - [ ] Cook recipe - [ ] Sleep ``` -[*Read more about task lists.*](https://github.com/blog/1375%0A-task-lists-in-gfm-issues-pulls-comments) +[*Read more about task lists.*](https://help.github.com/articles/writing-on-github#task-lists) #### Task Lists in Markdown Documents In full Markdown documents **read-only** checklists can now be added using the following syntax: @@ -377,15 +383,19 @@ In full Markdown documents **read-only** checklists can now be added using the f - [ ] Mercury - [x] Venus - [x] Earth + - [x] Moon - [x] Mars -- [ ] Jupiter + - [ ] Deimos + - [ ] Phobos ``` - [ ] Mercury - [x] Venus - [x] Earth + - [x] Moon - [x] Mars -- [ ] Jupiter + - [ ] Deimos + - [ ] Phobos [*Read more about task lists in markdown documents.*](https://github.com/blog/1825-task-lists-in-all-markdown-documents)