Questions tagged [flexmark]

flexmark-java is a Java implementation of CommonMark 0.28 spec parser using the blocks first, inlines after Markdown parsing architecture.

5 questions
4
votes
0 answers

Flexmark Typographic Extension silently dropping characters?

Using Flexmark 0.64.0 with Java 17 I'm expecting the Typographic Extension to turn ' into ’ with its default configuration, but instead it seems merely to drop the character. The same happens e.g. with ---. I'm setting up my parser and HTML…
Garret Wilson
  • 18,219
  • 30
  • 144
  • 272
3
votes
1 answer

How to render multi-line tables with flexmark-java?

I would like to move over to Flexmark-Java for rendering Markdown documents, which have been previously used with Pandoc. Unfortunately, Flexmark does not come with any //ParserEmulationProfile// for the particular Pandoc markdown style, so there…
joergd
  • 553
  • 4
  • 13
1
vote
1 answer

Maven site generation using advanced Markdown?

We are using Markdown in our Maven generated site. Works like a charm. AFAIK the plugin uses Flexmark under the hood, which supports the Admonition extensions. We would like to use them too, the infoboxes are quite helpful for documentation. Our…
stwissel
  • 20,110
  • 6
  • 54
  • 101
1
vote
1 answer

How to make Flexmark-Java process "@"-mentions?

When processing markdown, GitHub supports the @-syntax to mention a username or team. How can such mentions be processed with Flexmark-Java? With following code snippet, Hello, @world ! is reported as a single Text node where I would expect to get…
mstrap
  • 16,808
  • 10
  • 56
  • 86
0
votes
1 answer

How to use Markdown with links in JSF?

I am developing an JSF web application and would like to introduce a lot of documentation to be visible directly in the web application. Technically I would like to use Markdown language and made already first experimence with. I am currently…
Martin Metz
  • 308
  • 1
  • 3
  • 13