小编典典

使用 Markdown 在 GitHub 的 wiki 中调整图像大小

all

我正在 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。


阅读 62

收藏
2022-04-04

共1个答案

小编典典

更新:

图像的 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/

2022-04-04