Extract social profiles metadata from HTML.
Parsed HTML document or raw HTML string
Social profiles metadata
Extracts social media profile URLs and handles from meta tags and structured data.
// With parsed document (recommended for multiple extractions)const doc = parseHTML(htmlString);const profiles = extractSocialProfiles(doc);// Or directly with HTML stringconst profiles = extractSocialProfiles(htmlString); Copy
// With parsed document (recommended for multiple extractions)const doc = parseHTML(htmlString);const profiles = extractSocialProfiles(doc);// Or directly with HTML stringconst profiles = extractSocialProfiles(htmlString);
Extract social profiles metadata from HTML.