From db868e4bfe362872e8440faf6c5d6b28f5609c8f Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Thu, 11 Feb 2016 20:37:20 +0200 Subject: 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] --- doc/markdown/img/logo.png | Bin 0 -> 11097 bytes doc/markdown/markdown.md | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 doc/markdown/img/logo.png diff --git a/doc/markdown/img/logo.png b/doc/markdown/img/logo.png new file mode 100644 index 00000000000..7da5f23ed9b Binary files /dev/null and b/doc/markdown/img/logo.png differ 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 -- cgit v1.2.1