I’d also like to see feature 2. Some pictures need to be shown large (for example those containing text/tables/etc) while smaller thumbnails would fit other situations better. In addition it would be great if those smaller pictures could be shown larger when hovered over. Like described here: Shrink down Markdown Imgur Images ![]() and IMAGE GALLERY. I use Dynalist on workplace PCs and I can’t install browser extensions etc. to do it like @Vincent_Tang does it in his blogpost above.
Is this kind of functionality possible?
Feature 1 I believe is already possible through custom CSS. I’m new to CSS but the following code seems to work well for me:
.node-displayed-image {
max-width: 60%;
}x
Stylistically, I also like to add a small shadow under each image:
.node-displayed-image {
max-width: 60%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}