Current section
Files
Jump to
Current section
Files
native/djot_nif/src/options.rs
#[derive(Clone, Debug, NifUnitEnum)]
pub enum DjotRenderer {
Default,
Minified,
Indented,
}
#[derive(Debug, NifStruct)]
#[module = "Djot.Options"]
pub struct DjotOptions {
pub renderer: DjotRenderer,
pub indent_string: Option<String>,
pub indent_initial_level: Option<usize>,
}