diff options
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 6 |
1 files changed, 4 insertions, 2 deletions
| @@ -362,8 +362,10 @@ d_char *html_user_header(snac *snac, d_char *s, int local) | |||
| 362 | s = xs_str_cat(s, s1); | 362 | s = xs_str_cat(s, s1); |
| 363 | 363 | ||
| 364 | if (local) { | 364 | if (local) { |
| 365 | xs *bio = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL); | 365 | xs *bio1 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL); |
| 366 | xs *s1 = xs_fmt("<div class=\"p-note snac-top-user-bio\">%s</div>\n", bio); | 366 | xs *tags = xs_list_new(); |
| 367 | xs *bio2 = process_tags(snac, bio1, &tags); | ||
| 368 | xs *s1 = xs_fmt("<div class=\"p-note snac-top-user-bio\">%s</div>\n", bio2); | ||
| 367 | 369 | ||
| 368 | s = xs_str_cat(s, s1); | 370 | s = xs_str_cat(s, s1); |
| 369 | } | 371 | } |