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]
This commit is contained in:
parent
9bcc9ec14c
commit
db868e4bfe
2 changed files with 4 additions and 4 deletions
BIN
doc/markdown/img/logo.png
Normal file
BIN
doc/markdown/img/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
|
@ -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):
|
Here's our logo (hover to see the title text):
|
||||||
|
|
||||||
Inline-style:
|
Inline-style:
|
||||||
![alt text](assets/logo.svg)
|
![alt text](img/logo.png)
|
||||||
|
|
||||||
Reference-style:
|
Reference-style:
|
||||||
![alt text1][logo]
|
![alt text1][logo]
|
||||||
|
|
||||||
[logo]: assets/logo.svg
|
[logo]: img/logo.png
|
||||||
|
|
||||||
Here's our logo:
|
Here's our logo:
|
||||||
|
|
||||||
Inline-style:
|
Inline-style:
|
||||||
|
|
||||||
![alt text](/assets/logo.svg)
|
![alt text](img/logo.png)
|
||||||
|
|
||||||
Reference-style:
|
Reference-style:
|
||||||
|
|
||||||
![alt text][logo]
|
![alt text][logo]
|
||||||
|
|
||||||
[logo]: /assets/logo.svg
|
[logo]: img/logo.png
|
||||||
|
|
||||||
## Blockquotes
|
## Blockquotes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue