Call back when selecting image in markdown editor

I’m using netlify create as a cms using the Astro and setup cloudinary as an image asset provider. When selecting an image in the markdown editor is there a way to customise the image url that is returned via a callback or similar. I’m trying to customise the cloudinary url to specify image transformation rules rather the default url. For example when speficying an image field I can get the full image details Cloudinary asset integration | Netlify Docs and build the cloudinary url when rendering the page.

thanks

Hi there. I did have this issue previously, have you tried checking your media_library.yaml file? Maybe try adding a custom wrapper component?

media_library:
name: cloudinary
config:
cloud_name: {your-cloud-name}
api_key: {your-api-key}
default_transformations:
- fetch_format: auto
- crop: fill
- width: 300

I don’t believe that’s possible without custom source config: Asset sources | Netlify Docs