First of all, thanks for the work on this! I was able to get it all working with some custom renderers on my SvelteKit website and it all works well, when rendering with <SvelteMarkdown />
The things is, I'm also generating a RSS feed (xml file), and would like to have the generated HTML outputted in there as well. However, since the XML is generated in a +server.ts, I don't have access to the SvelteMarkdown component. Still I'd love to have the same output, and not use another library to compile it server side.
First of all, thanks for the work on this! I was able to get it all working with some custom renderers on my SvelteKit website and it all works well, when rendering with
<SvelteMarkdown />
The things is, I'm also generating a RSS feed (xml file), and would like to have the generated HTML outputted in there as well. However, since the XML is generated in a
+server.ts
, I don't have access to the SvelteMarkdown component. Still I'd love to have the same output, and not use another library to compile it server side.Here's how the XML file is generated.