diff options
| author | 2024-11-10 07:16:48 +0100 | |
|---|---|---|
| committer | 2024-11-10 07:16:48 +0100 | |
| commit | a657274d4e65ac1b16c49a9eae04ac02b0498f2a (patch) | |
| tree | 457e0ca5f5eeb722f979d6c9c23e4506a0c58d6c /html.c | |
| parent | RSS feeds are now 2.0 instead of 0.91. (diff) | |
| download | snac2-a657274d4e65ac1b16c49a9eae04ac02b0498f2a.tar.gz snac2-a657274d4e65ac1b16c49a9eae04ac02b0498f2a.tar.xz snac2-a657274d4e65ac1b16c49a9eae04ac02b0498f2a.zip | |
In the RSS description, don't convert the bio from Markdown.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -3178,7 +3178,7 @@ int html_get_handler(const xs_dict *req, const char *q_path, | |||
| 3178 | return HTTP_STATUS_FORBIDDEN; | 3178 | return HTTP_STATUS_FORBIDDEN; |
| 3179 | 3179 | ||
| 3180 | xs *elems = timeline_simple_list(&snac, "public", 0, 20); | 3180 | xs *elems = timeline_simple_list(&snac, "public", 0, 20); |
| 3181 | xs *bio = not_really_markdown(xs_dict_get(snac.config, "bio"), NULL, NULL); | 3181 | xs *bio = xs_dup(xs_dict_get(snac.config, "bio")); |
| 3182 | 3182 | ||
| 3183 | xs *rss_title = xs_fmt("%s (@%s@%s)", | 3183 | xs *rss_title = xs_fmt("%s (@%s@%s)", |
| 3184 | xs_dict_get(snac.config, "name"), | 3184 | xs_dict_get(snac.config, "name"), |