全局设置linenothreshold

时间:2013-02-11 22:38:26

标签: python python-sphinx restructuredtext

选项linenothreshold允许用户控制代码块必须具有的最小行数,以便为其生成行号。我希望能够全局指定(例如在conf.py)?

1 个答案:

答案 0 :(得分:2)

conf.py中可添加的内容之一是

  

rst_prolog

     

一串reStructuredText,它将包含在每个读取的源文件的开头。 1.0版中的新功能

所以如果你添加像

这样的东西
rst_prolog = '''
.. highlight:: python
   :linenothreshold: 0

'''

会做你想做的事。

是的,它确实是rst_prolog而不是rst_prologue