File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 13
13
from .ast import (
14
14
JupyterCell ,
15
15
JupyterCellNode ,
16
- InputCell ,
16
+ CellInput ,
17
17
CellInputNode ,
18
- OutputCell ,
18
+ CellOutput ,
19
19
CellOutputNode ,
20
20
CellOutputBundleNode ,
21
21
JupyterKernelNode ,
@@ -269,8 +269,8 @@ def setup(app):
269
269
270
270
app .add_directive ("jupyter-execute" , JupyterCell )
271
271
app .add_directive ("jupyter-kernel" , JupyterKernel )
272
- app .add_directive ("jupyter-input" , InputCell )
273
- app .add_directive ("jupyter-output" , OutputCell )
272
+ app .add_directive ("jupyter-input" , CellInput )
273
+ app .add_directive ("jupyter-output" , CellOutput )
274
274
app .add_directive ("thebe-button" , ThebeButton )
275
275
app .add_role ("jupyter-download:notebook" , JupyterDownloadRole ())
276
276
app .add_role ("jupyter-download:nb" , JupyterDownloadRole ())
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ def run(self):
163
163
cell_node += cell_input
164
164
return [cell_node ]
165
165
166
- class InputCell (Directive ):
166
+ class CellInput (Directive ):
167
167
"""Define a code cell to be included verbatim but not executed.
168
168
169
169
Arguments
@@ -233,7 +233,7 @@ def run(self):
233
233
cell_node += cell_input
234
234
return [cell_node ]
235
235
236
- class OutputCell (Directive ):
236
+ class CellOutput (Directive ):
237
237
"""Define an output cell to be included verbatim.
238
238
239
239
Arguments
You can’t perform that action at this time.
0 commit comments