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...
This is more of a reminder to myself, unless someone wants to do a PR. Currently, the parser is more of a lexer/tokenizer that returns a token stream. I can...
 Though not breaking inside the text area (expected), non-breaking spaces and thin non breaking spaces should not break when md is rendered. I guess it is...
This PR intents to fix some issues a few users have been having. For example, #183 and #134. The current implementation also won't linkify some valid links, like just "github.com"....
When rendering a list of posts on a page, footnotes for later posts end up backlinking to the first one because the generated links are unique to a post, but...
I've found out that dot and comma are missing on the punctuation list. That makes Remarkable skip sequences like ". for instance. 
I'm trying to create a plugin that will allow for multiple line breaks. ie. ``` js 'Multiple \n\n\n\n\n lines!' ``` would render as ``` html Multiplelines! ``` or even just...
Hi, is there a way to render inline text without actual markup from markdown string? We need to print not formatted strings in some places in administration. e.g. ``` var...
Hello guys, I am trying to write a small plugin to extend blockquotes with an author at the end of it. The syntax I would like to recognize is: >...
I want to know how to use the styles in the sample `index.css` in demo
Unlike other markdown parsers, remarkable allows "data:" URIs in links. For example, the following markdown text generates a "test" link that executes javascript: ``` [test](data:text/html;charset=utf-8;base64,PHNjcmlwdD5hbGVydCgiSGVsbG8sIHdvcmxkISIpPC9zY3JpcHQ+) ``` It would be nice...