Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vaadin and markdown

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 ?

like image 286
BenjaminD Avatar asked Sep 02 '26 11:09

BenjaminD


1 Answers

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.

like image 114
Brett Sutton Avatar answered Sep 04 '26 23:09

Brett Sutton