flexmark-java
flexmark-java copied to clipboard
CommonMark/Markdown Java parser with source level AST. CommonMark 0.28, emulation of: pegdown, kramdown, markdown.pl, MultiMarkdown. With HTML to MD, MD to PDF, MD to DOCX conversion modules.
When converting MD `[](https://www.example.org)` to HTML, we are getting nested links ``` https://www.example.org
I tried to add a ext-resizable-images dependency to the project [MarkdownMacro](https://github.com/Atlas-Authority/MarkdownMacro) but got an error.  It seems to me that I did not fully specify the setting for ext-resizable-images...
Failing test case (submitted as #495): ```java @Test public void manyUnderscores() { assertRendering(Strings.repeat("_", 5000), ""); } ``` Expected test to pass or at least not crash with `StackoverflowError`: ``` java.lang.StackOverflowError...
I like to use katex and mermaid features in Gitlab extension from my pergdown based application. Is it possible to use both Pegdown and Gitlab extensions. If yes, how to...
I'm trying to translate a markdown text containing a ToC marker `[TOC]` (from `TocExtension`), but the marker is dropped after translation. * [X] `Parser` * [ ] `HtmlRenderer` * [X]...
I'm trying to embed an element like this ... in my document (surrounded by blank lines) and the parser does not recognize this as an HTML block even when HTML_BLOCK_START_ONLY_ON_BLOCK_TAGS...
## Background I was redirected to post my issues here: [Image not getting rendered in HTML · Issue #1547 · gsantner/markor](https://github.com/gsantner/markor/issues/1547) ## Description - Case 1: Renders Properly ```markdown #...
Does it support mathematical expressions ?
**Is your feature request related to a problem? Please describe.** We are trying to provide a feature that user can expand and collapse the code block as similar here https://gist.github.com/pierrejoubert73/902cc94d79424356a8d20be2b382e1ab#a-collapsible-section-containing-code...