Ipython 显示函数 html 等同于 r 内核

Ipython display function html equivalent but for r kernel

我在 ipython 单元格(python 内核)中有以下代码:

from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))

有了这个,当我导出到 html 时,笔记本占据了 html 的整个宽度。

除了 r 内核 ipython 笔记本,是否有任何等效项?

感谢您的帮助!

最后我设法在将笔记本导出到 html 时做到这一点,它占用了总宽度。我修改了文件 .../anaconda3/lib/python3.7/site-packages/nbconvert/resources/style.min.css 添加 .container { width:100% !important;}