Only print the contexts.

This allows us to pipe the output to jq to see the context easier. We can see the rendered output in the files written to disk.
This commit is contained in:
Tom Alexander
2023-10-24 00:51:28 -04:00
parent 2b7a19a1d4
commit 31a3efe417
6 changed files with 10 additions and 7 deletions

View File

@@ -72,7 +72,6 @@ impl SiteRenderer {
blog_post_page,
)?;
let rendered_output = renderer_integration.render(render_context)?;
println!("Rendered: {}", rendered_output);
let parent_directory = output_path
.parent()
.ok_or("Output file should have a containing directory.")?;