# ansi-to-tui [![drone build](https://img.shields.io/drone/build/uttarayan/ansi-to-tui?server=https%3A%2F%2Fdrone.uttarayan.me)][mirror] [![github build](https://github.com/uttarayan21/ansi-to-tui/actions/workflows/build.yaml/badge.svg)][ansi-to-tui] [![downloads](https://img.shields.io/crates/d/ansi-to-tui)](https://crates.io/crates/ansi-to-tui) A nom parser to parse text with ANSI color codes and turn them into [`ratatui::text::Text`][Text]. | Color | Supported | Examples | | ------ | :-------: | ------------------------ | | 24 bit | ✓ | `\x1b[38;2;;;m` | | 8 bit | ✓ | `\x1b[38;5;m` | | 4 bit | ✓ | `\x1b[30..37;40..47m` | ## Example ```rust use ansi_to_tui::IntoText; let buffer = std::fs::read("ascii/text.ascii").unwrap(); let output = buffer.into_text(); ``` [Text]: https://docs.rs/tui/main/ratatui/text/struct.Text.html [ansi-to-tui]: https://github.com/uttarayan21/ansi-to-tui [mirror]: https://git.uttarayan.me/uttarayan/ansi-to-tui