cli-tutor 0.3.0

Interactive terminal app for learning Unix command-line tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod command_list;
pub mod content_pane;
pub mod exercise_view;
pub mod free_practice_view;
pub mod help_overlay;
pub mod input_bar;
pub mod layout;
pub mod progress_overlay;

/// no_color.DISPLAY.1 — strip all styling when no_color is enabled
pub fn s(style: ratatui::style::Style, no_color: bool) -> ratatui::style::Style {
    if no_color {
        ratatui::style::Style::reset()
    } else {
        style
    }
}