(content: string)
| 1025 | } |
| 1026 | |
| 1027 | export function hasMarkdown(content: string): boolean { |
| 1028 | return /[*_`#>\-\+]|\[.*\]\(.*\)|```/.test(content) |
| 1029 | } |
| 1030 | |
| 1031 | export function hasIncompleteCodeFence(content: string): boolean { |
| 1032 | let fenceCount = 0 |
no outgoing calls
no test coverage detected