mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
Make mentions look EXACTLY like Mastodon
This commit is contained in:
parent
6a94dcfcc6
commit
31c4f89124
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ class FediverseHtmlParser(HTMLParser):
|
||||||
self.mention_aliases[short_hash] = handle_hash
|
self.mention_aliases[short_hash] = handle_hash
|
||||||
elif self.mention_aliases.get(short_hash) != handle_hash:
|
elif self.mention_aliases.get(short_hash) != handle_hash:
|
||||||
short_handle = handle
|
short_handle = handle
|
||||||
return f'<a href="{html.escape(url)}" class="mention">@<span>{html.escape(short_handle)}</span></a>'
|
return f'<span class="h-card"><a href="{html.escape(url)}" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>{html.escape(short_handle)}</span></a></span>'
|
||||||
else:
|
else:
|
||||||
return "@" + html.escape(handle)
|
return "@" + html.escape(handle)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue