We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4def96 commit 2abeb9fCopy full SHA for 2abeb9f
jupyter_sphinx/execute.py
@@ -164,7 +164,8 @@ def apply(self):
164
source = node.children[0]
165
source.attributes["classes"].append("code_cell")
166
node.attributes["cm_language"] = cm_language
167
- node += CellOutputNode(classes=["cell_output"])
+ if len(node.children) < 2:
168
+ node += CellOutputNode(classes=["cell_output"])
169
apply_styling(node, thebe_config)
170
continue
171
0 commit comments