Directory

← Back

HtmlRtfConverter

Addon HTML to RTF

Author

Rating

Popularity

<100

An addon for converting HTML to RTF on client-side

Sample code

Realized on Completablefuture
 CompletableFuture<String> rtFfromHtml =
                    htmlRtfClientSideConverter.getRTFfromHtmlFuture(
                            ("<h1>Html</h1>"),
                            this.getElement());
            rtFfromHtml.thenRun(() -> {
                try {
                    add(new Text(rtFfromHtml.get()));
                } catch (InterruptedException | ExecutionException e) {
                    //do smth
                }
            });

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

initial commit

Released
2022-06-15
Maturity
EXPERIMENTAL
License
Apache License 2.0

Compatibility

Framework
Vaadin 14+
Browser
N/A

HtmlRtfConverter - Vaadin Add-on Directory

Addon HTML to RTF HtmlRtfConverter - Vaadin Add-on Directory
An addon for converting HTML to RTF on client-side
Online