一次在 Jupyter notebook 中渲染所有 markdown 单元格
Render all markdown cells in a Jupyter notebook at once
有没有一种方便的方法可以在不 运行 代码单元格的情况下一次在 Jupyter 笔记本中呈现所有降价单元格?
我觉得很烦人的是,在浏览我的笔记本并进行一些小的更正时,降价单元格“松散”了它们的格式。是否有扩展名或命令可以让我“运行”(即呈现)所有降价单元格?如果没有,有没有办法至少更新降价单元格中的 table 内容。我的table的内容是通过nbextensions
实现的。
您可以使用 JupyterLab which provides a Render all Markdown cells
action if you are not limited to plain Jupyter notebooks. Doing this programmatically within the notebook seems to be not trivial to do as we can derive from this GitHub issue。我们也许可以自己实现,但我不知道有任何资源提供类似的东西。
有没有一种方便的方法可以在不 运行 代码单元格的情况下一次在 Jupyter 笔记本中呈现所有降价单元格?
我觉得很烦人的是,在浏览我的笔记本并进行一些小的更正时,降价单元格“松散”了它们的格式。是否有扩展名或命令可以让我“运行”(即呈现)所有降价单元格?如果没有,有没有办法至少更新降价单元格中的 table 内容。我的table的内容是通过nbextensions
实现的。
您可以使用 JupyterLab which provides a Render all Markdown cells
action if you are not limited to plain Jupyter notebooks. Doing this programmatically within the notebook seems to be not trivial to do as we can derive from this GitHub issue。我们也许可以自己实现,但我不知道有任何资源提供类似的东西。