When I create a new blog post using an MDX file and add images to it, they are rendered as regular img tags.
Is there a way for me to modify the image tags that are rendered from the mdx file without using an Astro component in the mdx file. All I need to do for lazy loading is add a data-src attribute to every image. Is there a way to do this in pre processing?
I don't want to have to use a custom component for this, as this mdx file will be generated using a text editor in a CMS by non-technical users, so I don't want them to have to wrap things in component tags, it's not user-friendly