(options: ConvertToDeepnoteOptions)
| 344 | } |
| 345 | |
| 346 | function convertMarimoToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 347 | return convertSingleFileToDeepnote({ |
| 348 | ...options, |
| 349 | formatName: 'Marimo notebook', |
| 350 | converter: readAndConvertMarimoFile, |
| 351 | }) |
| 352 | } |
| 353 | |
| 354 | async function convertDeepnoteToFormat( |
| 355 | absolutePath: string, |
no test coverage detected