3

I searched through the Vaadin documentation but couldn't find a way to render markdown.

Is there a widget allowing that ?

Or should I convert markdown into HTML ?

BenjaminD
  • 488
  • 3
  • 13

1 Answers1

4

See the Vaadin Directory of add-ons.

There you will find Markdown Area by Maxime Rauturier, a simple TextArea to preview the markdown syntax. Works in Vaadin Flow, version 10+.

<dependency>
  <groupId>org.vaadin.maxime</groupId>
  <artifactId>markdown-area</artifactId>
  <version>1.0.2</version>
</dependency>

Searching the Directory reveals several MarkDown related items.

Basil Bourque
  • 303,325
  • 100
  • 852
  • 1,154
Brett Sutton
  • 3,900
  • 2
  • 28
  • 53