ansitok 0.3.0

A library for parsing ANSI Escape Codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod ansi_parser;
mod escape_sequence;
mod output;
mod parsers;
mod sgr_parser;
mod visual_attribute;

pub use ansi_parser::{parse_ansi, AnsiIterator};
pub use escape_sequence::EscapeCode;
pub use output::Output;
pub use sgr_parser::{parse_ansi_sgr, SGRParser};
pub use visual_attribute::{AnsiColor, VisualAttribute};