zola/src/rendering/highlighting.rs
2017-05-17 21:53:26 +09:00

7 lines
195 B
Rust

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"));
}