Remove slugify debug message, add 'rendering html'

This commit is contained in:
Tad Hardesty 2020-01-26 14:14:56 -08:00
parent 28839b6efe
commit 16ebb19b5d
2 changed files with 1 additions and 1 deletions

View file

@ -614,6 +614,7 @@ fn main2() -> Result<(), Box<dyn std::error::Error>> {
git,
};
println!("rendering html");
{
#[derive(Serialize)]
struct Index<'a> {

View file

@ -159,6 +159,5 @@ fn slugify(input: &str) -> String {
}
let len = output.trim_end_matches('-').len();
output.truncate(len);
eprintln!("slugify {:?} = {:?}", input, output);
output
}