summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-03-02 06:49:12 +0100
committerdefault <nobody@localhost>2024-03-02 06:49:12 +0100
commit1ac162ce434b20729fd2d563fb0f71c776db4ebf (patch)
treedba1bced6ab73de899ba618f7a9520bee087765b
parent4b48f6adafc4b42543394203c61b6d024c864e1d (diff)
Don't show the :shortname: as a title tag.
It sometimes breaks usernames and it's pointless anyway.
-rw-r--r--html.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/html.c b/html.c
index eff356e..3e27b70 100644
--- a/html.c
+++ b/html.c
@@ -72,7 +72,6 @@ xs_str *replace_shortnames(xs_str *s, xs_list *tag, int ems)
xs_html *img = xs_html_sctag("img",
xs_html_attr("loading", "lazy"),
xs_html_attr("src", u),
- xs_html_attr("title", n),
xs_html_attr("style", style));
xs *s1 = xs_html_render(img);