我正在使用Jeckyll呈现GitHub风格的降价表(至少我认为这是准确的描述)。我正在使用此Jeckyll theme
如何缩放表格中的图像?我尝试了两件事:
| I say | You say | Example image |
|-------------------|-------------------|-------------------|
| Hello | Goodbye| ![dummy](images/example-studies/Screenshot_gonogo.png){:width="50"}|
| Hello | Goodbye| {% include image.html file="pathToImg/img.png" alt="img" max-width="200" %}|
| Hello | Goodbye| {% include image.html file="pathToImg/img.png" alt="img" max-width="200" %}|
第一行(![dummy](pathToImage/image.png){:width="50"}
)中的版本无效。 (请参见下面的屏幕快照的第一行。)
第2行和第3行({% include image.html file="pathToImage/image.png" alt="alt text" max-width="200" %}
)上的版本确实有效,但在呈现的表中又多了一行。
此额外的行没有出现在GitHub预览中,所以我认为这是一个Jeckyll问题。
答案 0 :(得分:0)
您可以在markdown中使用HTML标签。尝试在表格中使用<img src="my/image/path"/>
。