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 f04f5c3 commit ff738bcCopy full SHA for ff738bc
jupyterlite_sphinx/jupyterlite_sphinx.py
@@ -347,12 +347,15 @@ def run(self):
347
# are expected to be found.
348
349
import tempfile
350
+
351
temp_dir = tempfile.mkdtemp()
352
# Copy notebooks in notebooks_dir to temp_dir
353
shutil.copy(notebook, temp_dir)
354
355
if self.env.config.strip_tagged_cells:
- print(f"{notebook}: Removing cells tagged with 'strip' metadata set to 'true'")
356
+ print(
357
+ f"{notebook}: Removing cells tagged with 'strip' metadata set to 'true'"
358
+ )
359
360
# Note: the directives meant to be stripped must be inside their own
361
# cell so that the cell itself gets removed from the notebook. This
0 commit comments