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 aab788c commit 3c857cfCopy full SHA for 3c857cf
render.py
@@ -70,6 +70,8 @@ def source_from_cell(cell):
70
source = re.sub(r"\bImage\(.*\)", "", source) # remove bokeh render
71
if "%%R" in source:
72
source = '\n'.join(source.split('\n')[1:])
73
+ if "%%altair" in source:
74
+ source = '\n'.join(source.split('\n')[1:])
75
else:
76
source = source.replace('"', "'")
77
if source.startswith('"""') or source.startswith("'''"):
0 commit comments