我正在 GitHub 上写一个 wiki 页面,我正在使用 Markdown。
我的问题是我要放置一个大图像(此图像在它自己的存储库中),我需要调整它的大小。
我尝试了不同的解决方案,但它们不起作用:
![image](http://url.to/image.png "Title" {width=40px height=400px}) ![image](http://url.to/image.png = 250x250) ![image](http://url.to/image.png = 250x) [[http://url.to/image.png = 250x]]
有没有办法得到它?
最好没有 HTML。
图像的 Markdown 语法(外部/内部):
![test](https://github.com/favicon.ico)
用于调整 图像大小的 HTML 代码(内部/外部):
<img src="https://github.com/favicon.ico" width="48">
例子:
这应该有效:
[[ http://url.to/image.png | 高度 = 100 像素]]
来源:https ://guides.github.com/features/mastering- markdown/