|
IrcFormatEvent::Bold |
|
| IrcFormatEvent::Italic |
|
| IrcFormatEvent::Underline |
|
| IrcFormatEvent::Strikethrough |
|
| IrcFormatEvent::Monospace => { |
|
// TODO |
|
} |
We recently implemented parsing IRC format characters for bold, italic, underline, strikethrough, and monospace, but we currently ignore them. xterm and xterm-compatible terminals have control characters for these (except monospace, as all text is monospace in most terminals), so we should update termbox first to allow rendering bold, italic etc. then use it in TUI.
tiny/crates/libtiny_tui/src/msg_area/line.rs
Lines 115 to 121 in b7094c9
We recently implemented parsing IRC format characters for bold, italic, underline, strikethrough, and monospace, but we currently ignore them. xterm and xterm-compatible terminals have control characters for these (except monospace, as all text is monospace in most terminals), so we should update termbox first to allow rendering bold, italic etc. then use it in TUI.