(href: string)
| 252 | } |
| 253 | |
| 254 | function renderModulePreload(href: string): Html | null { |
| 255 | return isJavaScript(href) ? html`\n<link rel="modulepreload" href="${href}">` : null; |
| 256 | } |
| 257 | |
| 258 | function renderHeader(header: MarkdownPage["header"], resolvers: HtmlResolvers): Html | null { |
| 259 | return header |
nothing calls this directly
no test coverage detected