diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-02-11 20:37:20 +0200 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-02-11 20:37:20 +0200 |
commit | db868e4bfe362872e8440faf6c5d6b28f5609c8f (patch) | |
tree | 80b4265ec787c2f29f09016b1dc2754564627271 /doc/markdown | |
parent | 9bcc9ec14cf4f120b8e16d5c232f82e1fc5e2cfd (diff) | |
download | gitlab-ce-db868e4bfe362872e8440faf6c5d6b28f5609c8f.tar.gz |
Add a new image in the markdown help page
Previously we were linking directly from the public/
directory. While this worked for the GitLab help page,
it was not working for doc.gitlab.com. Adding an image
in a relative directory and linking from there serves
both ends.
[ci skip]
Diffstat (limited to 'doc/markdown')
-rw-r--r-- | doc/markdown/img/logo.png | bin | 0 -> 11097 bytes | |||
-rw-r--r-- | doc/markdown/markdown.md | 8 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/markdown/img/logo.png b/doc/markdown/img/logo.png Binary files differnew file mode 100644 index 00000000000..7da5f23ed9b --- /dev/null +++ b/doc/markdown/img/logo.png diff --git a/doc/markdown/markdown.md b/doc/markdown/markdown.md index f6bffba9fdb..c400cdac64d 100644 --- a/doc/markdown/markdown.md +++ b/doc/markdown/markdown.md @@ -424,24 +424,24 @@ will point the link to `wikis/style` when the link is inside of a wiki markdown Here's our logo (hover to see the title text): Inline-style: - ![alt text](assets/logo.svg) + ![alt text](img/logo.png) Reference-style: ![alt text1][logo] - [logo]: assets/logo.svg + [logo]: img/logo.png Here's our logo: Inline-style: -![alt text](/assets/logo.svg) +![alt text](img/logo.png) Reference-style: ![alt text][logo] -[logo]: /assets/logo.svg +[logo]: img/logo.png ## Blockquotes |