From b9f6723563b25d385cd3e6bb2ec8a399e099cfbc Mon Sep 17 00:00:00 2001 From: Martin Heuschober Date: Wed, 1 Nov 2023 22:52:41 +0000 Subject: [PATCH] remove leftover from frontmatter keyword filtering attempt --- src/lib.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 5280190..bb3f7e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -228,7 +228,6 @@ pub struct Exporter<'a> { destination: PathBuf, start_at: PathBuf, frontmatter_strategy: FrontmatterStrategy, - ignore_frontmatter_keyword: &'a str, vault_contents: Option>, walk_options: WalkOptions<'a>, process_embeds_recursively: bool, @@ -242,10 +241,6 @@ impl<'a> fmt::Debug for Exporter<'a> { .field("root", &self.root) .field("destination", &self.destination) .field("frontmatter_strategy", &self.frontmatter_strategy) - .field( - "ignore_frontmatter_keyword", - &self.ignore_frontmatter_keyword, - ) .field("vault_contents", &self.vault_contents) .field("walk_options", &self.walk_options) .field( @@ -276,7 +271,6 @@ impl<'a> Exporter<'a> { root, destination, frontmatter_strategy: FrontmatterStrategy::Auto, - ignore_frontmatter_keyword: "private", walk_options: WalkOptions::default(), process_embeds_recursively: true, vault_contents: None,