diff --git a/src/bread.rs b/src/bread.rs index 379ee3f..c65bc52 100644 --- a/src/bread.rs +++ b/src/bread.rs @@ -171,11 +171,11 @@ impl Bread { ) .replace("{heading}", &date) .replace("{prev}", &(match prev { - Some(b) => format!(r##"<"##, b.url, b.label), + Some(b) => format!(r#""#, b.url, b.label), None => "".to_string() })) .replace("{next}", &(match next { - Some(b) => format!(r##">"##, b.url, b.label), + Some(b) => format!(r#""#, b.url, b.label), None => "".to_string() })) .replace("{note}", ¬e_html);