diff options
author | default <nobody@localhost> | 2023-05-24 14:58:42 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-05-24 14:58:42 +0200 |
commit | fdb35f343796d6abd2736e5fb6e6e891c881fd97 (patch) | |
tree | e692f5e751a99d4166a5f62efa12ca6512fe9be6 /format.c | |
parent | f8838c65aa6dae8a6a8a093d713c8286492a34a6 (diff) |
Also accept 'cite' as a valid HTML tag.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ xs_str *not_really_markdown(const char *content, xs_list **attach) const char *valid_tags[] = { - "a", "p", "br", "br/", "blockquote", "ul", "li", + "a", "p", "br", "br/", "blockquote", "ul", "li", "cite", "span", "i", "b", "u", "pre", "code", "em", "strong", NULL }; |