Pablo Berganza
Pablo Berganza
Sorry about the delay! I'm not sure I understand what the issue is here? SvelteMarkdown doesn't concern itself with styling (although you can add styles when overriding the "renderers", or...
I'll add this to the README. But the approach is either what @magnetenstad mentioned, or using your own custom renderer for the element you want. E.g. if you want to...
So, in the current implementation of this package we are only importing the Lexer from marked. Everything else gets tree-shaked out of the bundle. Skimming the docs it seems there's...
Thanks for the repo! I'll be tinkering with it. From what I see you're using Marked directly. I'll get back to you as soon as possible.
Sorry for the delay. I'll look into this. That is really weird. I've been debating on whether I should migrate this to `remark` instead of `marked` due to its plugins...
Svelte Markdown is inspired by React Markdown which uses remark behind the scenes and works client side. The reason I used marked was that I wanted a working version ASAP...
@raulfdm I am definitely open to contributions. The only issue I see is that with [mdx style syntax](https://mdsvex.com), Svelte components do need a build step. If you wanted to fetch...
I was just experimenting with Akkoma and Mangane. Got to this issue as well. One detail that I found is that if I go to '/web' directly on a fresh...
Hi! Do you maybe have a CodeSandbox (or a small repo) where I can see what you're trying to do?
I am aware `editorjs` fails on SSR so you need to dynamically import it on the client. But I _am_ doing that in this package by default: https://github.com/pablo-abc/svelte-editorjs/blob/44871bb108c5979adf99824ba43ff11410444ae5/src/index.ts#L56-L57 Maybe there's...