diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-05-04 17:37:37 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-05-06 13:00:13 -0400 |
commit | c915c7b0010d5f9a76092622eff5f17afa072c61 (patch) | |
tree | 382cd881acc8582fcc8193db454f2941291dddfd /spec/fixtures/markdown.md.erb | |
parent | 421f3f1551fee86cac163b06404c407b5ac34604 (diff) | |
download | gitlab-ce-c915c7b0010d5f9a76092622eff5f17afa072c61.tar.gz |
Add TaskList to Markdown feature spec
Diffstat (limited to 'spec/fixtures/markdown.md.erb')
-rw-r--r-- | spec/fixtures/markdown.md.erb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/fixtures/markdown.md.erb b/spec/fixtures/markdown.md.erb index 0c140758557..09ee83ba77c 100644 --- a/spec/fixtures/markdown.md.erb +++ b/spec/fixtures/markdown.md.erb @@ -176,3 +176,13 @@ References should be parseable even inside _!<%= merge_request.iid %>_ emphasis. - Label by name in quotes: ~"<%= label.name %>" - Ignored in code: `~<%= simple_label.name %>` - Ignored in links: [Link to ~<%= simple_label.id %>](#label-link) + +### Task Lists + +- [ ] Incomplete task 1 +- [x] Complete task 1 +- [ ] Incomplete task 2 + - [ ] Incomplete sub-task 1 + - [ ] Incomplete sub-task 2 + - [x] Complete sub-task 1 +- [X] Complete task 2 |