# figleter [![docs](https://docs.rs/figleter/badge.svg)](https://docs.rs/figleter) [![crates.io](https://img.shields.io/crates/v/figleter.svg)](https://crates.io/crates/figleter) A Rust library for [FIGlet](http://www.figlet.org/) to generate ascii art. It is a fork from [figlet-rs](https://github.com/yuanbohan/rs-figlet) with kerning support. # Example ```rust use figleter::FIGfont; fn main() { let standard_font = FIGfont::standard().unwrap(); let figure = standard_font.convert("Hello Rust"); assert!(figure.is_some()); println!("{}", figure.unwrap()); } ``` ![figlet-sample](./figlet-sample.png) # License figleter is distributed under the terms of the Apache License (Version 2.0). See [LICENSE-APACHE](LICENSE-APACHE) and [COPYRIGHT](COPYRIGHT) for details.