remarkable icon indicating copy to clipboard operation
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...

Results 113 remarkable issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

![remarkable demo 2017-05-01 21-40-11](https://cloud.githubusercontent.com/assets/39081/25591971/0883f5dc-2eb7-11e7-8377-1c73649469f1.png) 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...

bug

I've found out that dot and comma are missing on the punctuation list. That makes Remarkable skip sequences like ". for instance. ![Remarkable](https://ooo.0o0.ooo/2017/02/24/58afdfe8f253a.png)

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...

request

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...