Fix bold text html rendering

pull/1/head
trivernis 4 years ago
parent d815ae9a20
commit fbb33ea6d9

@ -235,7 +235,7 @@ impl ToHtml for Image {
impl ToHtml for BoldText {
fn to_html(&self) -> String {
format!("<u>{}</u>", self.value.to_html())
format!("<b>{}</b>", self.value.to_html())
}
}

Loading…
Cancel
Save