我在我的 Jupyter 笔记本中使用 Python Markdown 扩展,到目前为止,它在实时笔记本中效果很好:
但是,当我尝试将其导出为 html 时(我为此使用 GUI:)File > Download as > HTML (.html)
,不再计算内联代码:
该文档说将这些行添加到jupyter_nbconvert_config.py
配置文件中:
c = get_config()
c.Exporter.preprocessors = ['pre_pymarkdown.PyMarkdownPreprocessor']
但是,我的文件夹中不存在该%USERPROFILE%\.jupyter
文件,只有 JSON jupyter_nbconvert_config.json
。jupyter nbconvert --generate-config
我在我的 conda 提示符中生成了它并添加了这些行。
我的“strmlt”环境文件夹中有pre_pymarkdown.py
脚本:"C:\ProgramData\Anaconda3\envs\strmlt\Lib\site-packages\jupyter_contrib_nbextensions\nbconvert_support\pre_pymarkdown.py"
但这一切仍然不能解决我的问题。我究竟做错了什么?