##// END OF EJS Templates
pretransformer configurables
Matthias BUSSONNIER -
Show More
@@ -195,8 +195,14 b' class ConverterTemplate(Configurable):'
195 display_data_priority = List(['html', 'pdf', 'svg', 'latex', 'png', 'jpg', 'jpeg' , 'text'],
195 display_data_priority = List(['html', 'pdf', 'svg', 'latex', 'png', 'jpg', 'jpeg' , 'text'],
196 config=True,
196 config=True,
197 help= """
197 help= """
198 A list of ast.NodeTransformer subclass instances, which will be applied
198 An ordered list of prefered output type, the firs encounterd will usually be
199 to user input before code is run.
199 used when converting discarding the others.
200 """
201 )
202
203 pre_transformer_order = List([],
204 config=True,
205 help= """ An ordered list of pretransformer to apply to the ipynb file befor running through templates
200 """
206 """
201 )
207 )
202
208
General Comments 0
You need to be logged in to leave comments. Login now