hlight 0.0.11

This library is dedicated to delivering exceptional syntax highlighting capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(__unstable_doc, feature(doc_auto_cfg, doc_notable_trait))]

/*!
# hlight

A library for output syntax highlighting.
*/
mod color_escape;
pub mod output;
mod resource;
pub mod syntax;
pub mod theme;
pub use color_escape::to_ansi_256color;

pub use crate::{output::Highlighter, resource::HighlightResource};