summaryrefslogtreecommitdiff
path: root/doc/markdown/markdown.md
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 19:27:06 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 19:27:06 -0800
commit0bcd5ca4ebfe4901aab8a74f58d0599883f709bd (patch)
treedf0e4a87f5cf2fc48f5a1b8c068f64d835b84d20 /doc/markdown/markdown.md
parent3db8e4524d8f2305e23023b0499036151363dee6 (diff)
parenta424a442429d8c4cde984ea917cd4399259880cd (diff)
downloadgitlab-ce-0bcd5ca4ebfe4901aab8a74f58d0599883f709bd.tar.gz
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'doc/markdown/markdown.md')
-rw-r--r--doc/markdown/markdown.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/markdown/markdown.md b/doc/markdown/markdown.md
index edb7a975503..7b79cd5d98b 100644
--- a/doc/markdown/markdown.md
+++ b/doc/markdown/markdown.md
@@ -250,17 +250,17 @@ The IDs are generated from the content of the header according to the following
For example:
```
-###### ..Ab_c-d. e [anchor](url) ![alt text](url)..
+###### ..Ab_c-d. e [anchor](URL) ![alt text](URL)..
```
which renders as:
-###### ..Ab_c-d. e [anchor](url) ![alt text](url)..
+###### ..Ab_c-d. e [anchor](URL) ![alt text](URL)..
will first be converted by step 1) into a string like:
```
-..Ab_c-d. e &lt;a href="url">anchor&lt;/a> &lt;img src="url" alt="alt text"/>..
+..Ab_c-d. e &lt;a href="URL">anchor&lt;/a> &lt;img src="URL" alt="alt text"/>..
```
After removing the tags in step 2) we get:
@@ -277,8 +277,8 @@ ab_c-d-e-anchor
Note in particular how:
-- for markdown anchors `[text](url)`, only the `text` is used
-- markdown images `![alt](url)` are completely ignored
+- for markdown anchors `[text](URL)`, only the `text` is used
+- markdown images `![alt](URL)` are completely ignored
## Emphasis