summaryrefslogtreecommitdiffstats
path: root/doc/help
diff options
context:
space:
mode:
authorlfbrock <lf.brock@spinpunch.com>2015-12-08 10:07:41 -0500
committerlfbrock <lf.brock@spinpunch.com>2015-12-08 10:07:41 -0500
commit5192d65ab033eabc9f895ff135cd7e7cfcd36056 (patch)
tree66b78c9656102b8d6adfcdc8a63b16219e3ab89d /doc/help
parentab728f05b36337b56d1bbc50c0e800a9ffe8a139 (diff)
downloadchat-5192d65ab033eabc9f895ff135cd7e7cfcd36056.tar.gz
chat-5192d65ab033eabc9f895ff135cd7e7cfcd36056.tar.bz2
chat-5192d65ab033eabc9f895ff135cd7e7cfcd36056.zip
Update Markdown.md
Diffstat (limited to 'doc/help')
-rw-r--r--doc/help/Markdown.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/help/Markdown.md b/doc/help/Markdown.md
index 1befed8d4..64ce4fc83 100644
--- a/doc/help/Markdown.md
+++ b/doc/help/Markdown.md
@@ -88,7 +88,7 @@ and
## Emojis
-Check out a full list of emojis [here](http://www.emoji-cheat-sheet.com/).
+Emoji provided free by [Emoji One](http://emojione.com/). Check out a full list of emojis [here](http://http://emoji.codes/).
```
:smile: :+1: :sheep:
@@ -132,6 +132,17 @@ Renders as:
1. Item one
2. Item two
+Make a task list by including square brackets:
+```
+- [ ] Item one
+- [ ] Item two
+- [x] Completed item
+```
+Renders as:
+- [ ] Item one
+- [ ] Item two
+- [x] Completed item
+
## Tables:
Create a table by placing a dashed line under the header row and separating the columns with a pipe `|`. (The columns don’t need to line up exactly for it to work). Choose how to align table columns by including colons `:` within the header row.