From 6aa0a139a3617dbdd1aea07b7ebef79889f21c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Thu, 19 Mar 2020 00:23:39 +0100 Subject: [PATCH] fix --- src/bread.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);