在 Gitlab 中将图像添加到 README.org 个文件
Add images to README.org files in Gitlab
在Github中描述了一种将图像添加到markdown文件的方法here。但是,我想将图像添加到 Gitlab 中的 *.org
文件(Github 和 Gitlab 都支持 README.org
文件,因此两者的解决方案应该相同)。我试过:
[[file:./path/to/file.svg]]
[[sometext][file:./path/to/file.svg]]]
[[file:./path/to/file.svg]][sometext]]
Markdown 的格式也不行:
![alt text](./path/to/file.svg)
一个现已删除的答案建议使用
![][1]
[1]: ./path/tofile
这也不行。
正确的做法是什么?
Insetting html
适用于 Gitlab 和 Github。
#+html: <p align="center"><img src="path/to/file" /></p>
#+caption: <img description> (optional)
#+attr_html: :width 50 px
#+attr_html: :height 50 px
[[<path to image>]]
有关更多信息,请查看 orgmode manual。
在Github中描述了一种将图像添加到markdown文件的方法here。但是,我想将图像添加到 Gitlab 中的 *.org
文件(Github 和 Gitlab 都支持 README.org
文件,因此两者的解决方案应该相同)。我试过:
[[file:./path/to/file.svg]]
[[sometext][file:./path/to/file.svg]]]
[[file:./path/to/file.svg]][sometext]]
Markdown 的格式也不行:
![alt text](./path/to/file.svg)
一个现已删除的答案建议使用
![][1]
[1]: ./path/tofile
这也不行。
正确的做法是什么?
Insetting html
适用于 Gitlab 和 Github。
#+html: <p align="center"><img src="path/to/file" /></p>
#+caption: <img description> (optional)
#+attr_html: :width 50 px
#+attr_html: :height 50 px
[[<path to image>]]
有关更多信息,请查看 orgmode manual。