diff --git a/html.c b/html.c
index b4daf44..b9946e6 100644
--- a/html.c
+++ b/html.c
@@ -867,6 +867,13 @@ static xs_html *html_user_body(snac *user, int read_only)
xs_html_text(v));
}
}
+ else
+ if (xs_startswith(v, "gemini:/")) {
+ value = xs_html_tag("a",
+ xs_html_attr("rel", "me"),
+ xs_html_attr("href", v),
+ xs_html_text(v));
+ }
else
value = xs_html_text(v);