Hello,
I want to parse an html file from a vuejs project build:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="favicon.ico">
<title>vue-playground</title>
<link href="css/app.ef4263c7.css" rel="preload" as="style">
<link href="js/app.bd8c8303.js" rel="preload" as="script">
<link href="js/chunk-vendors.52add7a9.js" rel="preload" as="script">
<link href="css/app.ef4263c7.css" rel="stylesheet">
</head>
<body>
<noscript>
<strong>
We're sorry but vue-playground doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<script src="js/chunk-vendors.52add7a9.js"></script>
<script src="js/app.bd8c8303.js"></script>
</body>
</html>
Is it possible to parse <link href="..." rel="preload" as="style"> (stylesheet) and <link href="..." rel="preload" as="script"> (javascript) in the future? Perhaps I can try a PR on this, what do you think?