diff options
author | default <nobody@localhost> | 2023-09-17 03:03:20 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-09-17 03:03:20 +0200 |
commit | 931b871eb15a1533b2140b64356c397ce535bcce (patch) | |
tree | 0e2405bd7d1c55bb1050779012b70f188ce583cf /format.c | |
parent | 8ebfa10547d6512925b894e049bd72e6955f7461 (diff) |
Also accept s HTML tags.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -203,7 +203,7 @@ xs_str *not_really_markdown(const char *content, xs_list **attach) const char *valid_tags[] = { "a", "p", "br", "br/", "blockquote", "ul", "ol", "li", "cite", "small", - "span", "i", "b", "u", "pre", "code", "em", "strong", "hr", "img", "del", NULL + "span", "i", "b", "u", "s", "pre", "code", "em", "strong", "hr", "img", "del", NULL }; xs_str *sanitize(const char *content) |