Today I want to share a small but useful feature I found in the Azure DevOps wiki.
Azure DevOps allows you to add an image inside a wiki page using the following markdown syntax:
![Text](URL)
The text in the brackets describes the image being linked and the URL points to the image location.
By default the image you include using this syntax is included at full size. But did you know it also possible to resize an included image?
To do that include a space and an equal sign after the URL and then specify either a width and a height:
![Text](URL =WIDTHxHEIGHT)
Or only a width:
![Text](URL =WIDTHx)
Notice the ‘x’ which is not a typo.
More information: Markdown syntax for files, widgets, and wikis - Azure DevOps | Microsoft Learn