* 创建导出文件 * @param fileName 文件名(不含扩展名) * @param content 文件内容 * @param exportPath 导出路径
(fileName: string, content: string, exportPath: string)
| 37 | * @param exportPath 导出路径 |
| 38 | */ |
| 39 | private async createExportFile(fileName: string, content: string, exportPath: string): Promise<TFile> { |
| 40 | return this.fileWriter.createMarkdownFile(fileName, content, exportPath); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * 导出选中的多个高亮为 Markdown 文件 |
no test coverage detected