inkhaven 1.3.28

Inkhaven — TUI literary work editor for Typst books
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WORLD-4 compilation layers. P0 = astronomy (the others land in P1/P2).

pub mod astronomy_layer;
pub mod climate_layer;
pub mod demographics_layer;
pub mod geology_layer;
pub mod hydrology_layer;

pub use astronomy_layer::compile_astronomy;
pub use climate_layer::compile_climate;
pub use demographics_layer::compile_demographics;
pub use geology_layer::{compile_geology, compile_geology_dem};
pub use hydrology_layer::compile_hydrology;