重组文本中段落之间缺少带有手动标记的空行

Missing empty line with manual tag between paragraphs in restructuredText

我的重组文本标记如下所示:

`pybliometrics.scopus.exception.Scopus404Error: NOT FOUND`
    The entity you are looking for does not exist.  Check that your identifier is still pointing to the item you are looking for.

`pybliometrics.scopus.exception.Scopus414Error: TOO LARGE`
    The query string you are using is too long.  Break it up in smaller pieces.

.. _Scopus429Error:

`pybliometrics.scopus.exception.Scopus429Error: QUOTA EXCEEDED`
    Your provided API key's weekly quota has been depleted.  If you provided multiple keys in your :doc:`configuration file <../configuration>`, this means all your keys are depleted.  In this case, wait up to week until your API key's quota has been reset.

在输出中,我在放置手册 _Scopus429Error 标签的地方错过了一个空行:

要查看实时视图,请单击 here

我该怎么办?我尝试添加 |,但结果 space 太大了。

参考标签将单个定义列表分成两部分,主题在定义列表末尾缺少底边距或边距。您可以将此样式添加到 custom.css 文件并将其作为配置选项包含在 conf.pyhtml_css_files.

custom.css

dl {
  margin-bottom: 1em;
}

conf.py

html_css_files = ['custom.css']