diff options
author | default <nobody@localhost> | 2024-06-02 08:44:38 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-06-02 08:44:38 +0200 |
commit | b1dceb07704d419e6e13f6509d5f80832b20460c (patch) | |
tree | 5f97e0bc2e673fd60a0a395e69791f4ac6f5ecb6 /activitypub.c | |
parent | 7a6b94a058dcef6f94eb98e404f56f2872ece3c5 (diff) |
Added h-card to the class of mention links.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 212dd2f..8998acd 100644 --- a/activitypub.c +++ b/activitypub.c @@ -757,7 +757,7 @@ xs_str *process_tags(snac *snac, const char *content, xs_list **tag) tl = xs_list_append(tl, d); - link = xs_fmt("<a href=\"%s\" class=\"u-url mention\">%s</a>", actor, n); + link = xs_fmt("<a href=\"%s\" class=\"u-url h-card mention\">%s</a>", actor, n); } if (!xs_is_null(link)) |