mirror of https://github.com/tootsuite/mastodon
microformat mentions can have an implicit property (#12189)
See the first example here: http://microformats.org/wiki/microformats2#hyperlinked_personpull/12207/head
parent
3ebd903535
commit
9762fe382c
|
@ -84,7 +84,7 @@ class FetchLinkCardService < BaseService
|
|||
|
||||
def skip_link?(a)
|
||||
# Avoid links for hashtags and mentions (microformats)
|
||||
a['rel']&.include?('tag') || a['class']&.include?('u-url') || mention_link?(a)
|
||||
a['rel']&.include?('tag') || a['class']&.match?(/u-url|h-card/) || mention_link?(a)
|
||||
end
|
||||
|
||||
def attempt_oembed
|
||||
|
|
Loading…
Reference in New Issue