zola/src/rendering/highlighting.rs

7 lines
195 B
Rust
Raw Normal View History

2017-05-17 12:53:26 +00:00
use syntect::dumps::from_binary;
use syntect::highlighting::ThemeSet;
lazy_static!{
pub static ref THEME_SET: ThemeSet = from_binary(include_bytes!("../../sublime_themes/all.themedump"));
}