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:
authorEwan Edwards <eedwards@perforce.com>2015-01-30 21:24:45 +0300
committerEwan Edwards <eedwards@perforce.com>2015-01-30 21:24:45 +0300
commite6e337088bbb4736983119928b6b6b451bd3ef20 (patch)
treeb4052034e51615b85f7f09ca71012a398638a3d9 /doc/markdown
parentc47328948b5fff218c68279260a57ab6b03e7423 (diff)
Make all non-config/non-operational mentions of URL consistently
capitalized. Make the plural version consistently "URLs". Fix an instance where the article "the" before URL was missing.
Diffstat (limited to 'doc/markdown')
-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