作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 JupyterLab 中查看 reStructuredText 文件,到目前为止我发现的最好的是 @akaihola's answer到相关 issue on github .
我添加了一个解决方法,允许在不查看源代码的情况下渲染文件,如下所示。
最佳答案
如果其他人可能需要它,这是我现在正在使用的解决方案:
import docutils.core
import docutils.writers.html5_polyglot
from IPython.core.magic import register_cell_magic, register_line_magic
from IPython.display import HTML
@register_cell_magic
def rst(line, cell):
"Render ReStructuredText"
writer = docutils.writers.html5_polyglot.Writer()
return HTML(docutils.core.publish_string(cell, writer=writer).decode('UTF-8'))
@register_line_magic
def rstfile(filename):
"Render ReStructuredText"
writer = docutils.writers.html5_polyglot.Writer()
with open(filename, 'r') as file:
cell = file.read()
return HTML(docutils.core.publish_string(cell, writer=writer).decode('UTF-8'))
rst
文件,没有来源:
%rstfile <your-rst-filename>
rst
单元格,显示 ReStructuredText 源和渲染输出:
%%rst
============
Main title
============
Some **heavy** markup.
关于jupyter-notebook - 为 Juptyer 笔记本添加 reStructuredText 支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59726350/
我需要在 JupyterLab 中查看 reStructuredText 文件,到目前为止我发现的最好的是 @akaihola's answer到相关 issue on github . 我添加了一个
我是一名优秀的程序员,十分优秀!