(name: string)
| 250 | const specialCodeblocks = new Set<string>(["style", "script"]); |
| 251 | |
| 252 | export function isCssState(name: string): boolean { |
| 253 | return cssStateLookup.has(normalizeCssStateName(name)); |
| 254 | } |
| 255 | |
| 256 | export function isCssException(name: string): boolean { |
| 257 | for (const exception of cssExceptions) { |
no test coverage detected