summaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
authorGravatar default2023-12-15 09:34:13 +0100
committerGravatar default2023-12-15 09:34:13 +0100
commit9e07114d020af6359ea99bf25e5423f4d9aebd9d (patch)
treef489901860786a40126a4c9e62f00a7b03348ea3 /format.c
parentMore log tweaks. (diff)
parentMerge pull request 'format.c: add <bdi>' (#86) from Yonle/snac2:master into m... (diff)
downloadsnac2-9e07114d020af6359ea99bf25e5423f4d9aebd9d.tar.gz
snac2-9e07114d020af6359ea99bf25e5423f4d9aebd9d.tar.xz
snac2-9e07114d020af6359ea99bf25e5423f4d9aebd9d.zip
Merge branch 'master' of grunfink-codeberg:grunfink/snac2
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 019260c..f47963e 100644
--- a/format.c
+++ b/format.c
@@ -204,7 +204,7 @@ xs_str *not_really_markdown(const char *content, xs_list **attach)
204 204
205const char *valid_tags[] = { 205const char *valid_tags[] = {
206 "a", "p", "br", "br/", "blockquote", "ul", "ol", "li", "cite", "small", 206 "a", "p", "br", "br/", "blockquote", "ul", "ol", "li", "cite", "small",
207 "span", "i", "b", "u", "s", "pre", "code", "em", "strong", "hr", "img", "del", NULL 207 "span", "i", "b", "u", "s", "pre", "code", "em", "strong", "hr", "img", "del", "bdi", NULL
208}; 208};
209 209
210xs_str *sanitize(const char *content) 210xs_str *sanitize(const char *content)