Show More
@@ -147,7 +147,12 b' class ConverterTemplate(Configurable):' | |||||
147 | return converted_cells |
|
147 | return converted_cells | |
148 |
|
148 | |||
149 | def convert(self, cell_separator='\n'): |
|
149 | def convert(self, cell_separator='\n'): | |
150 | return self.template.render(worksheets=self.process(), inlining=inlining) |
|
150 | """ convert the ipynb file | |
|
151 | ||||
|
152 | return both the converted ipynb file and a dict containing potential | |||
|
153 | other resources | |||
|
154 | """ | |||
|
155 | return self.template.render(worksheets=self.process(), inlining=inlining),{} | |||
151 |
|
156 | |||
152 |
|
157 | |||
153 | def read(self, filename): |
|
158 | def read(self, filename): |
General Comments 0
You need to be logged in to leave comments.
Login now