summaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-05-24 14:58:42 +0200
committerdefault <nobody@localhost>2023-05-24 14:58:42 +0200
commitfdb35f343796d6abd2736e5fb6e6e891c881fd97 (patch)
treee692f5e751a99d4166a5f62efa12ca6512fe9be6 /format.c
parentf8838c65aa6dae8a6a8a093d713c8286492a34a6 (diff)
Also accept 'cite' as a valid HTML tag.
Diffstat (limited to 'format.c')
-rw-r--r--format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/format.c b/format.c
index 5eec404..aad27d9 100644
--- a/format.c
+++ b/format.c
@@ -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
};