diff options
author | default <nobody@localhost> | 2022-10-28 19:23:47 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-28 19:23:47 +0200 |
commit | b8fbc946b88ebd19371844f40ba482844c3dbc4c (patch) | |
tree | caf9090184b1db269da1fca30e169f0665192d74 /format.c | |
parent | 899136684cdb18f2145a45f9bf137cff644779ea (diff) |
Accept more HTML tags.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |