From a2110b6741090e7e18f5e33e6907e824f6e2447a Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 31 Mar 2026 15:09:19 -0500 Subject: [PATCH] remove some debugs --- src/publish/publish.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/publish/publish.rs b/src/publish/publish.rs index 93093d7..7097c88 100644 --- a/src/publish/publish.rs +++ b/src/publish/publish.rs @@ -84,7 +84,6 @@ pub fn build_site( let file_name = path.file_name().unwrap_or_default().to_string_lossy(); if path.is_file() && !path.ends_with("~") && !file_name.starts_with(".#") { let mut handler = OrgHtmlExporter::new(Arc::clone(&files)); - // debug!(?path); if path .extension() .iter() @@ -92,7 +91,6 @@ pub fn build_site( .collect::() == "org" { - // debug!("It ends with org"); let org_string = fs::read_to_string(path).unwrap_or_default(); let org = orgize::Org::parse(&org_string); let mut keywords = org.keywords();