Fix handling of documents containing only whitespace.

This commit is contained in:
Tom Alexander
2023-12-15 19:49:12 -05:00
parent 2046603d01
commit 4b94dc60d2
5 changed files with 9 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ pub struct Document<'s> {
pub path: Option<PathBuf>,
pub zeroth_section: Option<Section<'s>>,
pub children: Vec<Heading<'s>>,
pub contents: Option<&'s str>,
pub contents: &'s str,
}
#[derive(Debug)]
@@ -64,7 +64,7 @@ impl<'s> StandardProperties<'s> for Document<'s> {
}
fn get_contents<'b>(&'b self) -> Option<&'s str> {
self.contents
Some(self.contents)
}
fn get_post_blank(&self) -> PostBlank {