syntect/highlighting/
mod.rs

1//! Everything having to do with turning parsed text into styled text.
2//!
3//! You might want to check out [`Theme`] for its handy text-editor related settings like selection
4//! color, [`ThemeSet`] for loading themes, as well as things starting with `Highlight` for how to
5//! highlight text.
6//!
7//! [`Theme`]: struct.Theme.html
8//! [`ThemeSet`]: struct.ThemeSet.html
9mod highlighter;
10mod selector;
11#[cfg(feature = "plist-load")]
12pub(crate) mod settings;
13mod style;
14mod theme;
15#[cfg(feature = "plist-load")]
16mod theme_load;
17mod theme_set;
18
19pub use self::selector::*;
20#[cfg(feature = "plist-load")]
21pub use self::settings::SettingsError;
22pub use self::style::*;
23pub use self::theme::*;
24#[cfg(feature = "plist-load")]
25pub use self::theme_load::*;
26pub use self::highlighter::*;
27pub use self::theme_set::*;