snac2

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

commit 9f6d34eddadafbd79bc608c1cb650d9c90b5a0d3
parent bb5a2445dac94a4d90b7d455b7723416a3df13ba
Author: default <nobody@localhost>
Date:   Sat,  5 Apr 2025 13:51:03 +0200

Use <hr hidden> instead of 'display: none' style.

Diffstat:
Mhtml.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/html.c b/html.c @@ -2734,7 +2734,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, /* add an invisible hr, to help differentiate between posts in text browsers */ xs_html_add(entry_top, xs_html_sctag("hr", - xs_html_attr("style", "display: none"))); + xs_html_attr("hidden", NULL))); return entry_top; }