GRAV not producing srcset images, what am I doing wrong?

Hello all,
Starting to dive deep into GRAV and I’m blown away with it thus far. Have an issue though with srcset images not being produced.
My Markdown is this:

![Intensive Logo](/images/01_Intensive-logo.jpg?lightbox=1200,800)

The output is this:
— html
Intensive Logo


The a href works, and so does the img src.
But checked out the paths 0n img srcset and the cached thumbnails aren't being created it seems.

What am I doing wrong?
Thanks in advance!
BR

BTW, this was with the Image Srcset Plug In. It’s even worse with the Srcset fallback, as the srcsets come through as incomplete base64’s then. It’s like it’s all almost there, but it’s not. I want to help out and get it there b/c everything that works works awesome…

I replied in the issue on GitHub. Note that the ImgSrcSet-plugin does not try to leverage Grav’s media caching mechanisms (it is unfit for handling the generation of many images from large images). Rather, it assumes that the images exist independently of Grav, and just generates the srcset-attribute.

For an example of how to generate these images with Node, see this gist.

Thanks OleVic. Still getting my head around things in GRAV. This was very helpful.