(options: ConvertToDeepnoteOptions)
| 320 | } |
| 321 | |
| 322 | function convertJupyterToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 323 | return convertSingleFileToDeepnote({ |
| 324 | ...options, |
| 325 | formatName: 'Jupyter Notebook', |
| 326 | converter: readAndConvertIpynbFile, |
| 327 | }) |
| 328 | } |
| 329 | |
| 330 | function convertQuartoToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 331 | return convertSingleFileToDeepnote({ |
no test coverage detected