fl 0.0.1

A FIG Driver written in Rust which aims to fully implement the FIGfont spec to create ascii art (figlets).
Documentation
1
2
3
4
5
6
7
8
9
use crate::font::FittingRules;

pub struct OutputOpts {
    pub height: usize,
    pub width: usize,
    pub print_direction: u8,
    pub white_space_break: bool,
    pub fittingRules: FittingRules,
}