snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 800bb0123df6abb20e5b06f739ba3917ba3a0b86
parent a20e8b8cd5c15e5e89696540d306e5f0bab4f174
Author: default <nobody@localhost>
Date:   Mon, 27 Nov 2023 21:14:27 +0100

Minor html_entry() tweaks.

Diffstat:
Mhtml.c | 17+++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/html.c b/html.c @@ -500,6 +500,7 @@ xs_html *html_instance_body(char *tag) static xs_str *html_instance_header(xs_str *s, char *tag) +/* TO BE REPLACED BY html_instance_body() */ { xs_html *head = html_instance_head(); @@ -1249,14 +1250,6 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, if (level >= 256) return os; - xs *s = xs_str_new("<div>\n"); - - { - xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5); - - s = xs_str_cat(s, s1); - } - if (strcmp(type, "Follow") == 0) { xs_html *h = xs_html_tag("div", xs_html_attr("class", "snac-post"), @@ -1292,6 +1285,14 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, && !valid_status(actor_get(actor, NULL))) return os; + xs *s = xs_str_new("<div>\n"); + + { + xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5); + + s = xs_str_cat(s, s1); + } + if (level == 0) s = xs_str_cat(s, "<div class=\"snac-post\">\n"); /** **/ else