Skip to content

Commit

Permalink
Update helix-query.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bstopp authored Jan 19, 2024
1 parent db9a368 commit 5a22302
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helix-query.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ indices:
value: textContent(el)
twitter:
select: div.author-detail ul > li > a
value: match(attribute(el, 'href'), '(^https?:\/\/(?:www\.)?twitter\.com\/.*$)')
value: match(attribute(el, 'href'), '^(https?:\/\/(?:www\.)?twitter\.com\/.*)$')
facebook:
select: div.author-detail ul > li > a
value: match(attribute(el, 'href'), '(^https?:\/\/(?:www\.)?facebook\.com\/.*$)')
value: match(attribute(el, 'href'), '^(https?:\/\/(?:www\.)?facebook\.com\/.*)$')
instagram:
select: div.author-detail ul > li > a
value: match(attribute(el, 'href'), '(^https?:\/\/(?:www\.)?instagram\.com\/.*$)')
value: match(attribute(el, 'href'), '^(https?:\/\/(?:www\.)?instagram\.com\/.*)$')
youtube:
select: div.author-detail ul > li > a
value: match(attribute(el, 'href'), '(^https?:\/\/(?:www\.)?youtube\.com\/.*$)')
value: match(attribute(el, 'href'), '^(https?:\/\/(?:www\.)?youtube\.com\/.*)$')

0 comments on commit 5a22302

Please sign in to comment.