I would like to display the output of a log entry with coded colors in a Javafx application.
The log lines I catch via ssh looking like
"\u001B[32m" + text with logging information + "\u001B[0m"
I tested with TextFlow and WebView, neither of them could understand the color coding.
Can anyone give me a to display colored lines in a JavaFX container like TextFlow?
Thanks GGK