(node: HTMLElement)
| 10 | import { CodeBlock } from '../interfaces/codeblock' |
| 11 | |
| 12 | const isPreElement = (node: HTMLElement) => { |
| 13 | return node.nodeName === 'PRE' |
| 14 | } |
| 15 | |
| 16 | const findSyntax = (node: HTMLElement) => { |
| 17 | const classList = node.classList |
no outgoing calls
no test coverage detected
searching dependent graphs…