Stamp hf-ids and return a linkedom document (same as parseMutable's path).
(html: string)
| 27 | |
| 28 | /** Stamp hf-ids and return a linkedom document (same as parseMutable's path). */ |
| 29 | function makeDoc(html: string) { |
| 30 | const { document } = parseHTML(ensureHfIds(html)); |
| 31 | return document; |
| 32 | } |
| 33 | |
| 34 | // ─── 1. resolveScoped ───────────────────────────────────────────────────────── |
| 35 |
no test coverage detected