Option to prevent markdown images from being clickable

I think this is doable with CSS only, so you can use a userstyle rather than requiring adding yet another option:

.node-displayed-image-link {
    pointer-events: none;
}
1 Like