remarkable
remarkable copied to clipboard
Markdown parser, done right. Commonmark support, extensions, syntax plugins, high speed - all in one. Gulp and metalsmith plugins available. Used by Facebook, Docusaurus and many others! Use https://g...
Thank you for providing a desktop version of Remarkable as a snap package. Is there a way of adding plugins to the desktop app? I don't see an option for...
I am setting up a toolchain for a small team. Given that we will be quite tight on time we can't really contribute PRs but it would be nice if...
This code ```js const { Remarkable } = require("remarkable"); const md = new Remarkable({ html: true }); const markdownTextBug = ` hello `; console.log(md.render(markdownTextBug)); const markdownTextWorking = ` hello `;...
## 🐛 Bug Report when using backtick within a table, the `pipe` `|` wont be espace by the `backslash` `\` (originally raised [here](https://github.com/facebook/docusaurus/issues/2004)) ## To Reproduce try this code within...
fix vertical bar within backtick within a table not escape issue
Closes #377
`` is a block element and somewhat common within markdown documents.
Hello! On Github, one can increment the bullet list level with two spaces. On remarkable, 4 more spaces are needed. How to configure remarkable such that the bullet list level...
Hi there, I'm using Remarkable to parse some content but I don't want it to automatically wrap content in paragraphs and use line-breaks instead. https://jsfiddle.net/gRoberts/xLopen45/2/ Regardless of whether I set...
I'm trying to write a custom remarkable plugin to add an icon to all links that are external. The approach I took is to mutate the `tokens` array passed to...