You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mkbook/src/models/chapter.rs

11 lines
213 B
Rust

use std::path::PathBuf;
use super::frontmatter::FrontMatter;
#[derive(Debug)]
pub struct Chapter {
pub front: FrontMatter,
pub sections: Vec<Chapter>,
pub source: PathBuf,
pub contents: String,
}