snac2

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

commit 00d683fa0480614643a97ef5d94ad98587440ffa
parent 9612289477e3ec121d50f63a46a887c7e8118c2f
Author: default <nobody@localhost>
Date:   Sun, 30 Oct 2022 06:01:46 +0100

Accepted for HTML tags.

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

diff --git a/format.c b/format.c @@ -153,7 +153,8 @@ 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", "pre", "code", NULL + "a", "p", "br", "br/", "img", "blockquote", "ul", "li", + "span", "i", "b", "pre", "code", "em", "strong", NULL }; d_char *sanitize(d_char *content)