Szyk Cech writes:
> Hello!
>
> I search few minutes Internet without success.
>
> My question is:
> Is this any reasonable solution which allow to render HTML in NCurses apps?!?
Sure: simply write a little bit of C++ code to parse HTML, and show the
parsed text using ncurses. It's not complicated. HTML parsing is not that
hard.
> I want to write app with commandline and Qt or NCurses interface.
> It will be nice if I can display some basic tags in Qt and NCurses without
> conversions...
I don't know what "conversions" means. Parsing and formatting basic HTML is
not rocket science. Cone, a terminal mail reader, is capable of displaying
HTML-formatted E-mail, and it didn't take an eternity to write a basic HTML
parser for it; even translating some basic HTML tags into terminal color and
highlight attributes. No CSS or tables, but basic HTML content is quite
readable.