blob: 5c09d521ccb64fb7e430d1167e12bf8487e974bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Extract HTML `<head>` contents
import { strict as assert } from "assert";
import { stripHtml } from "../dist/string-strip-html.esm.js";
const someHtml = `<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>the title</title>
</head>
<body>
the content
</body>
</html>`;
// The task asks not to include <head...> and </head>.
// First, extract head tag-to-head tag, including contents
const headWithHeadTags = stripHtml(someHtml, {
onlyStripTags: ["head"],
stripTogetherWithTheirContents: ["head"],
})
.filteredTagLocations.reduce(
(acc, [from, to]) => `${acc}${someHtml.slice(from, to)}`,
""
)
.trim();
assert.equal(
headWithHeadTags,
`<head>
<meta charset="utf-8">
<title>the title</title>
</head>`
);
const headContents = headWithHeadTags.replace(/<\/?head>/g, "").trim();
assert.equal(
headContents,
`<meta charset="utf-8">
<title>the title</title>`
);
|