Build a flat inlined HTML string simulating what inlineSubCompositions produces.
(inner: string)
| 22 | |
| 23 | /** Build a flat inlined HTML string simulating what inlineSubCompositions produces. */ |
| 24 | function inlinedHtml(inner: string): string { |
| 25 | return `<!DOCTYPE html><html><body>${inner}</body></html>`; |
| 26 | } |
| 27 | |
| 28 | /** Stamp hf-ids and return a linkedom document (same as parseMutable's path). */ |
| 29 | function makeDoc(html: string) { |
no outgoing calls
no test coverage detected