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.
I am trying to write a Link extension which will pull in content from an external file. I've based my code on the *ext-media-tags extension* so far. My use-case is...
I try to export a simple table and view result in LibreOffice and Google Docs. ``` | h1 | h2 | h3 | |-----|-----|-----| | 1-1 | 1-2 | 1-3...
I export nested lists to docx and open them with LibreOffice and Google Docs. Basic case of nested ordered list: ``` 1. P1 2. P2 1. P2-1 ``` LibreOffice displays...
This is my failing test in kotlin: ``` @Test fun test_parseToPdf_convertsMarkdownToPdfWithUTF8CharacterSet() { val markdown = "Общие" val inputStream = markdownParser.parseToPdf(markdown, "test").inputStream() val fileText = pdfText(inputStream) assertThat(fileText).contains("Общие") } private fun pdfText(input:...
I do not want to repeat table header in the subsequent page and if any column information is empty wanted to show | in between in generated docx. Example markdown...
By default table heading is repeated on every page. The option will allow tables that span pages not to repeat the heading.
Probably an unusual case, but I have content like this: ``` --- section: - title: Front Matter Test Case note: | This content should be exposed. - title: Second Test...
The flexmark-osgi artifact for version 0.64.0 creates the following require capability: Require-Capability osgi.ee;filter:="(osgi.ee=UNKNOWN)" which is never fullfilled by an OSGi framework. * [X] `osgi` * [ ] `HtmlRenderer` * [...
**Is your feature request related to a problem? Please describe.** Please support generating diagrams out of some diagram language like [mermaid](https://mermaid-js.github.io/mermaid/#/), [PlantUML](https://mermaid-js.github.io/mermaid/#/). Those could either be written inline or just...