Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
How to resize images
I received a comment on my answer to https://proposals.codidact.com/posts/289594 about the image size. It is a perfectly valid point. For comparison, in StackExchange it is possible to resize by adding an m or s to the filename.
Do we have any similar capabilities here to resize images? I know I can resize my image locally, but that is not as practical for many users, plus I can see situations where a single image might be referenced in multiple posts (or multiple sections of one post) and resizing via some sort of code in the markdown text would be very helpful.
And if we already have this capability, can we add it to a help page so people (like me) can find it?
1 answer
Technically, you can do it by writing HTML manually:
Code
<img src="https://codidact.com/community-assets/meta/logo-large.png" alt="Codidact logo" width="100px">
<img src="https://codidact.com/community-assets/meta/logo-large.png" alt="Codidact logo" width="200px">
Result
This is rather tedious though, and relies on some knowledge of HTML, so it would be nice if this was integrated somehow.
2 comment threads