(options: ConvertToDeepnoteOptions)
| 336 | } |
| 337 | |
| 338 | function convertPercentToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 339 | return convertSingleFileToDeepnote({ |
| 340 | ...options, |
| 341 | formatName: 'percent format notebook', |
| 342 | converter: readAndConvertPercentFile, |
| 343 | }) |
| 344 | } |
| 345 | |
| 346 | function convertMarimoToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 347 | return convertSingleFileToDeepnote({ |
no test coverage detected