racket-commonmark icon indicating copy to clipboard operation
racket-commonmark copied to clipboard

Fast, CommonMark-compliant Markdown parser written in Racket

Results 4 racket-commonmark issues
Sort by recently updated
recently updated
newest added

Is there are way with the current implementation to figure out the source position, ie, line column, where a given AST node was parsed from?

In the following example, the outer list is marked as `loose` when it should be `tight`: ```md * Outer a * Inner a Test ``` Leading to the outer list...

The program ```racket #lang at-exp racket/base (require commonmark racket/format) @(string->document @~a{ (1st) This is _emphasis_ and [a link](http://example.com). (2nd) This is _emphasis_ and [a link][1]. (3rd) This is _emphasis_ and...

Dear Alexis I would like to use your excellent racket-commonmark library to parse and process notes taken with [Obsidian](https://obsidian.md/). Obsidian generates [CommonMark, with some custom syntax](https://publish.obsidian.md/hub/04+-+Guides%2C+Workflows%2C+%26+Courses/Guides/Markdown+Syntax). Most importantly, Obsidian makes...