(line: string, inFence: boolean)
| 1421 | } |
| 1422 | |
| 1423 | function isForbiddenMarkdownHeading(line: string, inFence: boolean): boolean { |
| 1424 | return !inFence && /^#{1,6}\s+/.test(line.trim()) |
| 1425 | } |
| 1426 | |
| 1427 | function parseSeeTag(value: string): ParsedSeeTag { |
| 1428 | return { text: value, links: extractParsedInlineLinks(value) } |
no outgoing calls
no test coverage detected