From 9af260f781adc5825eafa040525a3b644d13c835 Mon Sep 17 00:00:00 2001 From: default Date: Fri, 28 Oct 2022 21:56:24 +0200 Subject: [PATCH] Also add pre to the valid HTML tags. --- format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.c b/format.c index fdbebdb..efebade 100644 --- a/format.c +++ b/format.c @@ -153,7 +153,7 @@ d_char *not_really_markdown(char *content, d_char **f_content) const char *valid_tags[] = { - "a", "p", "br", "br/", "img", "blockquote", "ul", "li", "span", "i", "b", NULL + "a", "p", "br", "br/", "img", "blockquote", "ul", "li", "span", "i", "b", "pre", NULL }; d_char *sanitize(d_char *content)