Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordosire <sytses@gmail.com>2014-02-12 12:45:34 +0400
committerdosire <sytses@gmail.com>2014-02-12 12:45:34 +0400
commitabb6204de832e2b9398389b4de48dd6021da00f9 (patch)
tree78e1389ff565ed02ffb959d109200d478cc0577d /doc/markdown
parentbb44a7a25d5c9efbf50ebb47b3b6a29adc97a1bc (diff)
Add information about rich text format dependencies.
Diffstat (limited to 'doc/markdown')
-rw-r--r--doc/markdown/markdown.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/markdown/markdown.md b/doc/markdown/markdown.md
index 008e37d11f9..f49f09756ab 100644
--- a/doc/markdown/markdown.md
+++ b/doc/markdown/markdown.md
@@ -45,6 +45,10 @@ You can use GFM in
* milestones
* wiki pages
+You can also use other rich text files in GitLab.
+You might have to install a depency to do so.
+Please see the [github-markup gem readme](https://github.com/gitlabhq/markup#markups) for more information.
+
Newlines
--------
The biggest difference that GFM introduces is in the handling of linebreaks. With traditional Markdown you can hard wrap paragraphs of text and they will be combined into a single paragraph. We find this to be the cause of a huge number of unintentional formatting errors. GFM treats newlines in paragraph-like content as real line breaks, which is probably what you intended.