1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-01 19:02:22 +01:00

Initial verison of PrettyPrinter builder

This commit is contained in:
sharkdp
2020-04-21 19:08:19 +02:00
committed by David Peter
parent 319ab779ee
commit 27974616bf
4 changed files with 53 additions and 16 deletions

View File

@@ -13,6 +13,7 @@ mod less;
pub(crate) mod line_range;
mod output;
mod preprocessor;
pub mod pretty_printer;
pub(crate) mod printer;
pub(crate) mod style;
pub(crate) mod syntax_mapping;
@@ -22,4 +23,5 @@ pub(crate) mod wrap;
pub use assets::HighlightingAssets;
pub use assets_metadata::AssetsMetadata;
pub use controller::Controller;
pub use pretty_printer::PrettyPrinter;
pub use printer::{InteractivePrinter, Printer, SimplePrinter};