snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit b8fbc946b88ebd19371844f40ba482844c3dbc4c
parent 899136684cdb18f2145a45f9bf137cff644779ea
Author: default <nobody@localhost>
Date:   Fri, 28 Oct 2022 19:23:47 +0200

Accept more HTML tags.

Diffstat:
Mformat.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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", NULL + "a", "p", "br", "br/", "img", "blockquote", "ul", "li", "span", "i", "b", NULL }; d_char *sanitize(d_char *content)