(file: TFile)
| 51 | // ==================== 提取 (委托给 HighlightExtractor) ==================== |
| 52 | |
| 53 | shouldProcessFile(file: TFile): boolean { |
| 54 | return this.extractor.shouldProcessFile(file); |
| 55 | } |
| 56 | |
| 57 | extractHighlights(content: string, file: TFile): HighlightInfo[] { |
| 58 | return this.extractor.extractHighlights(content, file); |
no outgoing calls
no test coverage detected