Created
June 8, 2022 18:41
-
-
Save rawnly/eea1249e2813504f86286623e06211e1 to your computer and use it in GitHub Desktop.
HTML Links to Remix like format.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const links = ` | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;600;700;800&display=swap" rel="stylesheet"> | |
` | |
const data = links.split('\n').map(l => l.trim()).filter(Boolean).map(link => { | |
const relRe = /rel="(?<rel>.*?)"/ | |
const hrefRe = /href="(?<href>.*?)"/ | |
const rel = link.match(relRe).groups | |
const href = link.match(hrefRe).groups | |
return { ...rel, ...href } | |
}) | |
console.log(data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment