Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add images to README.org files in Gitlab

A method to add images to markdown files in Github is described here. However, I would like to add images to *.org files in Gitlab (both Github and Gitlab support README.org files, so the solution should be equal for both). I've tried:

[[file:./path/to/file.svg]]
[[sometext][file:./path/to/file.svg]]]
[[file:./path/to/file.svg]][sometext]]

Markdown's format doesn't work either:

![alt text](./path/to/file.svg)

A now removed answer suggested using

![][1]

[1]: ./path/tofile

which doesn't work either.

What is the right way to do it?

like image 743
Robe Avatar asked Aug 05 '17 11:08

Robe


1 Answers

Insetting html works for both Gitlab and Github.

#+html: <p align="center"><img src="path/to/file" /></p>
like image 132
Robe Avatar answered Sep 17 '22 15:09

Robe