markdown-wasm icon indicating copy to clipboard operation
markdown-wasm copied to clipboard

Very fast Markdown parser and HTML generator implemented in WebAssembly, based on md4c

Results 12 markdown-wasm issues
Sort by recently updated
recently updated
newest added

Hi, First off, thanks a lot for this module! I'm trying to use this in Svelte-kit. I got it working in development mode locally after spending a few hours trying...

Hi! Thanks for this library. It's really super fast! I've some issues when I send the html output to a wysiwyg editor caused by the anchor link added in each...

I'm trying to use it in a Vue component, but when viewed from the browser URL, it tries to read markdown.wasm on the same path, so an error occurs depending...

How does this compare performance-wise to md4c? Also is there any significant reason why to use this over md4c?

I was interested in seeing how `markdown-wasm` compares to `remarkable`, which was made to improve `marked` - not only to improve speed but also add plugins. Their benchmarks say over...

Marked supports providing a custom highlight function to colour the code. It would be nice if markdown-wasm provides a similar feature. This means that every time a `` or a...

enhancement

I am trying to use this package inside Atom, which is an Electron app. I used [the following code](https://github.com/atom-community/atom-ide-markdown-service/blob/f30ac20b89f3fa3d5e07014a61c11f4cc61e4b77/src/renderer.ts#L27) to load and instantiate the wasm module asynchronously because Electron doesn't...

The [playground](https://rsms.me/markdown-wasm/) uses fixed flags (`DEFAULT | NO_HTML`), which is a good default to prevent XSS. I might be helpful to try out the different flags though, to see how...

documentation
enhancement

closes #22 --- External issue: https://github.com/mity/md4c/issues/143

None of the distributed modules can be used in Cloudflare Workers, due to the usage of Node.js specific modules like `path` and `fs` without `node:` prefix. Would it be possible...