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

I am creating an HTML and then converting it to a PDF file by using the below line: `PdfConverterExtension.exportToPdf(byteArrayOutputStream, htmlWithCss, "", BaseRendererBuilder.TextDirection.LTR);` I have a watermark CSS in my HTML...

everything is in the title: 0.64.8 release is available on Maven Central, but there is no associated tag in this Git repository (then FYI I can't rebuild https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/com/vladsch/flexmark/flexmark-java/README.md )

```java MutableDataSet options = new MutableDataSet(); options.setFrom(ParserEmulationProfile.MARKDOWN); options.set(Parser.EXTENSIONS, Lists.newArrayList(com.vladsch.flexmark.ext.tables.TablesExtension.create())); options.set(TablesExtension.FORMAT_TABLE_TRIM_CELL_WHITESPACE, true); Parser parser = Parser.builder(options).build(); Node document = parser.parse(markdown); List paragraphs=new ArrayList(); for (Node node = document.getFirstChild(); node != null;...

For emphasis, using asterisks to bold and italicize the middle of a word doesn't work. * [x] `Parser` * [x] `HtmlRenderer` * [ ] `Formatter` * [ ] `FlexmarkHtmlParser` *...

I think, I fixed the bug described in discussion #565. There's only one question left: The test suite `ExtAttributesTestSuite` fails in the case "example(Anchor Targets - Cond 4.1: 3) options(anchors)",...

Adjusted the use of delimiters to allow the triple case to work [per CommonMark](https://spec.commonmark.org/0.29/#example-415). The original logic didn't support the case where both the opener and closer are multiples of...

I'm having an issue trying to parse a markdown which has some emphasis around a link. * [x] `Parser` * [ ] `HtmlRenderer` * [ ] `Formatter` * [ ]...

Using Flexmark 0.64.0 with Java 17 I'm expecting the [Typographic Extension](https://github.com/vsch/flexmark-java/wiki/Typographic-Extension) to turn `'` into `’`, but instead it seems merely to drop the character. The same happens e.g. with...

I follow [CustomLinkResolverSample.java](https://github.com/vsch/flexmark-java/blob/master/flexmark-java-samples/src/com/vladsch/flexmark/java/samples/CustomLinkResolverSample.java) example and [Render AST as Markdown with Formatting Options](https://github.com/vsch/flexmark-java/wiki/Usage#render-ast-as-markdown-with-formatting-options) to implement custom parsing link, but not working. ```kotlin fun main() { val str = "![cover](https://www.google.com)" val options...

We have a database that holds 'textblocks'. These are records in the db that hold small snippets of html or markdown. I would like to add a new tag to...