From 38ee86f81e74edec97bf04d999d21221565f44fb Mon Sep 17 00:00:00 2001 From: default Date: Tue, 4 Jul 2023 17:15:38 +0200 Subject: Also call process_tags() when in the public timeline's bio. --- html.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index 4a04d7c..2eb542a 100644 --- a/html.c +++ b/html.c @@ -362,8 +362,10 @@ d_char *html_user_header(snac *snac, d_char *s, int local) s = xs_str_cat(s, s1); if (local) { - xs *bio = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL); - xs *s1 = xs_fmt("
%s
\n", bio); + xs *bio1 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL); + xs *tags = xs_list_new(); + xs *bio2 = process_tags(snac, bio1, &tags); + xs *s1 = xs_fmt("
%s
\n", bio2); s = xs_str_cat(s, s1); } -- cgit v1.2.3