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

Java library for parsing and rendering CommonMark (Markdown)

Results 41 commonmark-java issues
Sort by recently updated
recently updated
newest added

Fixes #12 Until now, this library could parse Commonmark into other formats, but not back into Commonmark format. This is understandable, as the Commonmark spec itself uses conversions to HTML...

I am using `commonmark` library to generate emails. It is a really nice and easy to use library. It have both `HtmlRenderer` for rich email body, and `TextContentRenderer` for plain...

enhancement
help wanted

I was trying to implement an extension that turns references denoted by a prefix character (@,#, or ~) into a link, and missing the means to do it. A PostProcessor...

enhancement

Latest version has automatic modules and can be used in Java 9 projects (#114). However, this is not compatible with the jlink tool. __Steps to reproduce the problem (provide example...

Steps to reproduce the problem (provide example Markdown if applicable): ``` Abc|Def ---|--- 1|2 | ``` Expected behavior: ``` Abc Def 1 2 ``` Actual behavior: ``` java.lang.StringIndexOutOfBoundsException: String index...

bug

Steps to reproduce the problem (provide example Markdown if applicable): ``` some text http://www.github.com and more text ``` Expected behavior: When the parser is created with `.includeSourceSpans(IncludeSourceSpans.BLOCKS_AND_INLINES)` I'd expect all...

bug

Would be great to have `[TOC]` support to automatically list out the contents of the different headers. Probably would be a good candidate for another extension

enhancement
help wanted

It's useful to be able to render a parsed document back to CommonMark markdown. This is a tracker issue for issues relating to that, so far: - [x] Unable to...