为强调行设置行字符限制(代码块指令)

问题描述 投票:0回答:0

当我现在这样做

.. code-block:: python
   :emphasize-lines: 3,5

   def some_function():
       interesting = False
       # 116 characters line
       print('This line is highlighted. but we exceeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed line limit')
       print('This one is not...')
       print('...but this one is.')

它是这样渲染的,即这里的问题是它没有突出显示整行(具有 116 个字符的行)。

docs 不显示如何在强调行选项中设置突出显示的行字符限制。我的问题是如何为此选项设置行字符限制?

我拥有的狮身人面像版本:

$ sphinx-build --version
sphinx-build 4.5.0
python documentation python-sphinx
© www.soinside.com 2019 - 2024. All rights reserved.