我正在尝试调整Wiki页面中图像的大小,但没有任何效果:图像始终以页面宽度的100%显示。
我尝试过reStructuredText:
.. image:: image.jpeg
:height: 100px
:width: 200px
:scale: 50 %
:alt: alternate text
(以及不同的组合,忽略一些行)。
然后我也尝试了
![](image.jpeg =250x)
但是,它仍然不会改变所显示图像的大小。
有什么主意吗?
答案 0 :(得分:2)
Bitbucket Server 7.5 支持在 Markdown 中定义图像大小。
[...]
支持的语法是将 height
和/或 width
指定为紧跟在图像降价后的大括号内的“key=value”对,例如:
![alt text for the image](image-file.png){width=50%}
![alt text for the image](image-file.png){height=50 width=60}
![alt text for the image](image-file.png){height=100}
![alt text for the image](image-file.png){width=200px}