ansi-to-tui

Build & Tests

Parse text with ansi color codes and turn them into tui::text::Text.

Supports TrueColor ( RGB ) ( \x1b[38;2;<r>;<g>;<b>m)
Supports 8 - Bit Color ( 0..256 ) ( \x1b[38;5;<n>m )
Supports 4 - Bit Color Pallete ( \x1b[30..37;40..47m )

Example

```rust use ansitotui::ansitotext; use std::io::Read;

let mut file = std::fs::File::open("ascii/text.ascii").unwrap(); let mut buffer: Vec = Vec::new(); file.readtoend(&mut buffer); let text = ansitotext(buffer); ```

A naive implementation, relatively fast.
Probably lots of room for improvement.