From 5a223026ec7598fd7d0b81f6f031844e78fd6571 Mon Sep 17 00:00:00 2001 From: Bryan Stopp Date: Fri, 19 Jan 2024 13:21:38 -0600 Subject: [PATCH] Update helix-query.yaml --- helix-query.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helix-query.yaml b/helix-query.yaml index cb6673f6..b5c65e22 100644 --- a/helix-query.yaml +++ b/helix-query.yaml @@ -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\/.*)$')