(options: ConvertToDeepnoteOptions)
| 328 | } |
| 329 | |
| 330 | function convertQuartoToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 331 | return convertSingleFileToDeepnote({ |
| 332 | ...options, |
| 333 | formatName: 'Quarto document', |
| 334 | converter: readAndConvertQuartoFile, |
| 335 | }) |
| 336 | } |
| 337 | |
| 338 | function convertPercentToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 339 | return convertSingleFileToDeepnote({ |
no test coverage detected