我想在 Sphinx 文档中的某些文本中插入多个空格。该文本出现在定义列表条目的值部分中。这是工作文本的示例。我想用空格替换
-
,或者找到其他获得视觉等效效果的方法:
Satisfy all existing ``GitHub`` issues
This is a cleanup activity in preparation for generating issues describing
the work items needed to realize Release ``0.1.0``. |br|
Status: **DONE** ----- Label: Infrastructure ----- Issue: ``1``
Define the content of development release ``0.1.0``
This activity defines the full list of content for release ``0.1.0``. |br|
**DONE** ----- Label: Development ----- Issue: ``2``
我尝试使用不间断空格
|nbsp|
和转义空格``\ \ \ \ \ `但都不起作用。
这段代码似乎有效:
Hello |nbsp| |nbsp| |nbsp| |nbsp| World.
.. |nbsp| unicode:: U+00A0 .. NO-BREAK SPACE
它产生:
<p>Hello World.</p>
这将创建不间断的空格字符。