From 9145c2246994265fe52f9dc3e2fe190f1bb9a522 Mon Sep 17 00:00:00 2001 From: default Date: Wed, 12 Jun 2024 07:56:11 +0200 Subject: [PATCH] All metadata links include the rel='me' attribute. --- html.c | 1 + 1 file changed, 1 insertion(+) diff --git a/html.c b/html.c index 4ac4799..48db522 100644 --- a/html.c +++ b/html.c @@ -861,6 +861,7 @@ static xs_html *html_user_body(snac *user, int read_only) else { value = xs_html_tag("a", xs_html_attr("href", v), + xs_html_attr("rel", "me"), xs_html_text(v)); } }