I see that image resizing has been implemented here: this issue. Currently it seems that you must specify both image dimensions: width x height as seen below:

We should be able to resize images using either a single number (probably corresponding to width) and have the height autoscale to maintain the original images width/height ratio. An example would look like this:

You could provide a numeric multiplier and have it resize based on that, such as 2 for 2x bigger, 0.5 for half the size etc. Example:

If two numbers are separated by an x, as in the current syntax for resizing images , the current resize functionality should continue to work as intended.
Try resizing an image in Boostnote! =)
On digging deeper, I found this discussion which outlines that single dimension specification is in fact implemented already. I just couldn't find it anywhere in the documentation either for boostnote or the markdown-it-imsize npm module that implemented image resizing for markdown projects like Boostnote. The proper syntax is as follows:
[image.png](:storage\path\to\image.png =300x)
[image.png](:storage\path\to\image.png =x300)
Thanks! I will close this issue.
Most helpful comment
On digging deeper, I found this discussion which outlines that single dimension specification is in fact implemented already. I just couldn't find it anywhere in the documentation either for boostnote or the
markdown-it-imsizenpm module that implemented image resizing for markdown projects like Boostnote. The proper syntax is as follows:To specify an image size by width (auto scaling height)
To specify an image size by height (auto scaling width)
Thanks! I will close this issue.