(content: string)
| 12 | const MARKDOWN_COMMENT_REGEX = /<!--[\s\S]*?-->/g; |
| 13 | |
| 14 | function stripMarkdownComments(content: string): string { |
| 15 | return content.replace(MARKDOWN_COMMENT_REGEX, "").trim(); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Instruction file names to search for, in priority order. |