diff options
author | Ben Bodenmiller <bbodenmiller@hotmail.com> | 2016-04-15 09:14:22 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-09-28 11:56:47 +0200 |
commit | 88ebb7b5e77307771da11e6e22a8c34f87d4a9de (patch) | |
tree | 6e7b9c80020da67f5580e7622c7d2b0b78d7c4b1 | |
parent | f4ded8a80889749d057b077a8e3f3ad45d8ba7b0 (diff) | |
download | gitlab-ce-88ebb7b5e77307771da11e6e22a8c34f87d4a9de.tar.gz |
Add footnote to Markdown docs
Signed-off-by: Rémy Coutable <remy@rymai.me>
-rw-r--r-- | doc/user/markdown.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/user/markdown.md b/doc/user/markdown.md index c7fda8a497f..56e5b802a52 100644 --- a/doc/user/markdown.md +++ b/doc/user/markdown.md @@ -27,6 +27,7 @@ * [Horizontal Rule](#horizontal-rule) * [Line Breaks](#line-breaks) * [Tables](#tables) +* [Footnotes](#footnotes) **[Wiki-Specific Markdown](#wiki-specific-markdown)** @@ -699,6 +700,15 @@ By including colons in the header row, you can align the text within that column | Cell 1 | Cell 2 | Cell 3 | Cell 4 | Cell 5 | Cell 6 | | Cell 7 | Cell 8 | Cell 9 | Cell 10 | Cell 11 | Cell 12 | +## Footnotes + +You can add footnotes to your text as follows.[^1] +[^1]: This is my awesome footnote. + +``` +You can add footnotes to your text as follows.[^1] +[^1]: This is my awesome footnote. +``` ## Wiki-specific Markdown |