我正在GitHub上写一个维基页面,我正在使用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。


当前回答

GitHub Pages现在使用kramdown作为它的markdown引擎,所以你可以使用以下语法:

Here is an inline ![smiley](smiley.png){:height="36px" width="36px"}.

http://kramdown.gettalong.org/syntax.html#images

不过我还没有在GitHub维基上测试它。

其他回答

GitHub Pages现在使用kramdown作为它的markdown引擎,所以你可以使用以下语法:

Here is an inline ![smiley](smiley.png){:height="36px" width="36px"}.

http://kramdown.gettalong.org/syntax.html#images

不过我还没有在GitHub维基上测试它。

在GitHub上,你可以直接使用HTML而不是Markdown:

<a href="url"><img src="http://url.to/image.png" align="left" height="48" width="48" ></a>

这样应该可以了。

在GitHub上只有直接HTML格式的图像工作近5年后,其他markdown选项仍然阻止图像在指定一些自定义大小时加载,甚至尺寸错误。 我更喜欢指定所需的宽度并自动计算高度,例如,

<img src="https://github.com/your_image.png" alt="您的图片标题" width="250"/>

你可以试着把图片放到markdown的表格中,像这样:

| ![Kiku](docs/snapshot/home.jpeg)        | ![Kiku](docs/snapshot/sub.jpeg) |
| --------------------------------------- | --------------------------------------- |
| ![Kiku](docs/snapshot/user-center.jpeg) |                                         |

它将使图像布局像网格,但它不能自定义每一个单一的图像大小。

更新:

图像的Markdown语法(外部/内部):

![test](https://github.com/favicon.ico)

缩放图像(内部/外部)的HTML代码:

<img src="https://github.com/favicon.ico" width="48">

例子:


旧的回答:

这应该可以工作:

[[http://url.to/image.png | height = 100px]]

来源:https://guides.github.com/features/mastering-markdown/