rant 4.0.0-alpha.33

The Rant procedural templating language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod num;
mod case;
mod ws;

pub use self::num::*;
pub use self::case::*;
pub use self::ws::*;

#[derive(Debug, Clone, Default)]
pub struct OutputFormat {
  pub whitespace_format: WhitespaceNormalizationMode,
  pub number_format: NumberFormat,
  pub casing_format: CasingFormat,
}