(signal: AbortSignal)
| 59 | } |
| 60 | |
| 61 | function init(signal: AbortSignal): void { |
| 62 | observe(standaloneGistLinkInMarkdown, link => { |
| 63 | if (pageDetect.isGistFile(link) && isOnlyChild(link)) { |
| 64 | void embedGist(link); |
| 65 | } |
| 66 | }, {signal}); |
| 67 | } |
| 68 | |
| 69 | void features.add(import.meta.url, { |
| 70 | include: [ |
nothing calls this directly
no test coverage detected