Search code examples
githubgitlaborg-modereadme

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?


Solution

  • Insetting html works for both Gitlab and Github.

    #+html: <p align="center"><img src="path/to/file" /></p>