Show links in item description

In commit 81c9cf53d6, I accidentally
disabled the links when rendering the item description.  This patch
fixes this mistake.
This commit is contained in:
Robin Krahl 2020-08-10 23:58:43 +02:00
parent a6b2d570b3
commit 7d1bf00d31
No known key found for this signature in database
GPG Key ID: 8E9B0870524F69D8

View File

@ -98,7 +98,7 @@ impl<P: Printer> TextRenderer<P> {
if let Some(text) = &doc.description {
self.print_heading(1, "Description")?;
self.printer.print_html(6, text, false)?;
self.printer.print_html(6, text, true)?;
self.printer.println()?;
}