diff options
author | Ewan Edwards <eedwards@perforce.com> | 2015-01-30 10:24:45 -0800 |
---|---|---|
committer | Ewan Edwards <eedwards@perforce.com> | 2015-01-30 10:24:45 -0800 |
commit | e6e337088bbb4736983119928b6b6b451bd3ef20 (patch) | |
tree | b4052034e51615b85f7f09ca71012a398638a3d9 /doc/markdown | |
parent | c47328948b5fff218c68279260a57ab6b03e7423 (diff) | |
download | gitlab-ce-e6e337088bbb4736983119928b6b6b451bd3ef20.tar.gz |
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.md | 10 |
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 <a href="url">anchor</a> <img src="url" alt="alt text"/>.. +..Ab_c-d. e <a href="URL">anchor</a> <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 |