(content: string)
| 225 | } |
| 226 | |
| 227 | function renderPlainText(content: string): void { |
| 228 | const pre = ensurePreContent(); |
| 229 | const codeEl = pre?.querySelector("code"); |
| 230 | if (codeEl) { |
| 231 | codeEl.textContent = content; |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | const EXTENSION_LANGUAGE_MAP: Record<string, string> = { |
| 236 | bicep: "bicep", |
no test coverage detected