pulldown_cmark_mdcat/terminal.rs
1// Copyright 2018-2020 Sebastian Wiesner <sebastian@swsnr.de>
2
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7//! Terminal utilities.
8
9// Support modules for terminal writing.
10
11pub(crate) mod osc;
12mod size;
13
14pub mod capabilities;
15mod detect;
16
17pub use self::detect::TerminalProgram;
18pub use self::size::TerminalSize;