14 lines
358 B
Rust
14 lines
358 B
Rust
use glob::glob;
|
|
use includedir_codegen::Compression;
|
|
|
|
fn main() {
|
|
let mut templates = includedir_codegen::start("BASE_TEMPLATES");
|
|
|
|
for path_result in glob("book/**/*.tera").unwrap() {
|
|
let path = path_result.unwrap();
|
|
templates.add_file(path, Compression::Gzip).unwrap();
|
|
}
|
|
|
|
templates.build("mdbook-templates.rs").unwrap();
|
|
}
|