调整 Bitbucket wiki 页面中的图像大小

问题描述 投票:0回答:2

我正在尝试调整 wiki 页面中图像的大小,但没有任何效果:图像始终以页面的 100% 宽度呈现。

我尝试使用reStructuredText:

.. image:: image.jpeg
   :height: 100px
   :width: 200px
   :scale: 50 %
   :alt: alternate text

(以及不同的组合,忽略一些行)。

然后我也尝试了

![](image.jpeg =250x)

但是,它不会改变所呈现图像的大小。

有什么想法吗?

bitbucket markdown restructuredtext
2个回答
12
投票

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}

查看更多信息:https://jira.atlassian.com/browse/BSERV-7426


0
投票

请小心设置宽度和高度属性的位置。

就我而言,附加的图像输入格式如下:

[![](){width=50%}]()

示例:

[![image.png](attachment:1234/5678){width=50%}](attachment:1234/5678)

© www.soinside.com 2019 - 2024. All rights reserved.