(line: string)
| 1417 | } |
| 1418 | |
| 1419 | function isBoldOnlyLine(line: string): boolean { |
| 1420 | return /^\*\*[^*]+\*\*(?:\s*)$/.test(line) |
| 1421 | } |
| 1422 | |
| 1423 | function isForbiddenMarkdownHeading(line: string, inFence: boolean): boolean { |
| 1424 | return !inFence && /^#{1,6}\s+/.test(line.trim()) |
no outgoing calls
no test coverage detected