From fbb33ea6d916cf995b54686cfafeaf6010e08bda Mon Sep 17 00:00:00 2001 From: trivernis Date: Sun, 31 May 2020 00:04:35 +0200 Subject: [PATCH] Fix bold text html rendering --- src/format/html.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/format/html.rs b/src/format/html.rs index e416cf3..eccd98a 100644 --- a/src/format/html.rs +++ b/src/format/html.rs @@ -235,7 +235,7 @@ impl ToHtml for Image { impl ToHtml for BoldText { fn to_html(&self) -> String { - format!("{}", self.value.to_html()) + format!("{}", self.value.to_html()) } }