Remove call to dbg!()
All checks were successful
run check / cargo check (push) Successful in 5m16s

This commit is contained in:
viridian 2024-04-06 22:08:16 +02:00
parent 2a83971cb3
commit cba49f26b1
Signed by: viridian
GPG key ID: DCD4DF95CE23FE8C

View file

@ -17,7 +17,6 @@ pub fn generate(mut blog_posts: Vec<BlogPost>, template_dir: &String) -> String
for post in &mut blog_posts {
post.content = get_unformatted_text(post.content.clone());
}
dbg!(&blog_posts);
let mut tera = Tera::new(&format!("{}/*", template_dir)).unwrap();
tera.autoescape_on(vec![]);