shellshot 0.5.0

Transform your command-line output into clean, shareable images with a single command.
Documentation
1
2
3
4
5
6
7
8
9
use termwiz::surface::{SequenceNo, Surface};

pub fn process_print(surface: &mut Surface, ch: char) -> SequenceNo {
    surface.add_change(ch)
}

pub fn process_print_string(surface: &mut Surface, str: &str) -> SequenceNo {
    surface.add_change(str)
}