#ansi #ansi-colors #convert-text #tui #ansi-term #colored-text #parser

ansi-to-tui

A library to convert ansi color coded text into ratatui::text::Text type from ratatui library

20 releases (8 stable)

4.0.1 Feb 29, 2024
3.1.0 Jun 23, 2023
3.0.0 Mar 21, 2023
2.0.2 Mar 21, 2023
0.3.0 Jun 1, 2021

#43 in Command-line interface

Download history 1125/week @ 2024-01-20 1304/week @ 2024-01-27 1525/week @ 2024-02-03 1401/week @ 2024-02-10 1349/week @ 2024-02-17 1634/week @ 2024-02-24 1703/week @ 2024-03-02 3639/week @ 2024-03-09 5347/week @ 2024-03-16 4752/week @ 2024-03-23 4320/week @ 2024-03-30 4021/week @ 2024-04-06 5481/week @ 2024-04-13 8747/week @ 2024-04-20 8672/week @ 2024-04-27 7715/week @ 2024-05-04

31,202 downloads per month
Used in 24 crates (21 directly)

MIT license

23KB
447 lines

ansi-to-tui

drone build github build downloads

A nom parser to parse text with ANSI color codes and turn them into ratatui::text::Text.

For people still using tui-rs use version v2.* for people migrating to ratatui use version v3.* I recommend switching over to ratatui since tui-rs is currently unmaintained.

Color Supported Examples
24 bit \x1b[38;2;<R>;<G>;<B>m
8 bit \x1b[38;5;<N>m
4 bit \x1b[30..37;40..47m

Example

use ansi_to_tui::IntoText;
let buffer = std::fs::read("ascii/text.ascii").unwrap();
let output = buffer.into_text();

Dependencies

~7MB
~121K SLoC