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

Results 186 flexmark-java issues
Sort by recently updated
recently updated
newest added

If it isn't already possible, I would love to see the renderer being capable of automatically adding e.g. lazyload to all img tags. Perhaps it could be generalized so that...

I am facing issue similar to https://github.com/vsch/flexmark-java/issues/138 while trying to convert md file to HTML. Ordered list is being rendered into first unordered list. Added double blank line to end...

https://github.com/vsch/flexmark-java/wiki/Extensions#admonition `Use class AbbreviationExtension from artifact flexmark-ext-admonition.` needs to be `Use class AdmonitionExtension from artifact flexmark-ext-admonition.` I can't see to edit that, so I created an issue instead

``` | head | |------| | body | {.red} ```

duplicated in the wiki page: https://github.com/vsch/flexmark-java/wiki/Yaml-Front-Matter-Configuration :warning: This is a brain storm and work in progress. Any feedback and suggestions would be greatly appreciated. YAML front matter configuration allows configuring...

:fire: enhancement
:warning: user feedback request

*Detected in version:* 0.62.2 (flexmark-all) ### Problem If a line contains a `:` and `` the html converter unexpectedly adds a whitespace before the `:`. See examples below. ### Example...

*Detected in version:* 0.62.2 (flexmark-all) #### Code ``` final String html = "Foo bar"; com.vladsch.flexmark.html2md.converter.FlexmarkHtmlConverter c = FlexmarkHtmlConverter.builder().build(); System.out.println(c.convert(html)); ``` #### Actual Output `**Foo**bar` #### Expected Output `**Foo** bar`

**Is your feature request related to a problem? Please describe.** I have a markdown editing app that performs live syntax highlighting, and I want blockquotes to have their leading `>`...

**Is your feature request related to a problem? Please describe.** I need to render given markdown to HTML. I'd like to use the `Formatter` to format the input prior to...

The `HtmlRenderer` class uses the following annotations: ``` java import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; ``` From a purely stylistic standpoint, when possible we should seek to use pure Java annotations. Equivalent...