mirror of https://github.com/mastodon/mastodon
`rel="me"` check should be case-insenstive (#32238)
parent
dbddd40c1c
commit
7385016837
@ -0,0 +1,12 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class NokogiriHandler
|
||||
class << self
|
||||
# See "set of space-separated tokens" in the HTML5 spec.
|
||||
WHITE_SPACE = /[ \x09\x0A\x0C\x0D]+/
|
||||
|
||||
def link_rel_include(token_list, token)
|
||||
token_list.to_s.downcase.split(WHITE_SPACE).include?(token.downcase)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue