Sphinx-reST-RTD 中的预格式化(逐字)超链接
Preformatted (verbatim) hyperlink in Sphinx-reST-RTD
我正在使用 Sphinx-RTD 构建文档。
我想在某处设置 link,并将样式设置为逐字或预格式化文本。
例如,假设我逐字记录:
ALTER TABLE
有什么方法可以在某个地方 link 吗,比如 :ref:...
或者甚至只是一个标准的 hyperlink?
如果我没记错的话 "Replacement Text" directive 可以提供帮助。
As reStructuredText doesn't support nested inline markup, the only way to create a reference with styled text is to use substitutions with the "replace" directive:
I recommend you try |Python|_.
.. |Python| replace:: Python, *the* best language around
.. _Python: http://www.python.org/
所以也许是这样的:
Click |altertable|_ to read details about |altertable|.
----
Blah blah blah
----
.. _altertable:
Here are the details about |altertable|: blah blah blah.
.. |altertable| replace:: ``ALTER TABLE``
我正在使用 Sphinx-RTD 构建文档。
我想在某处设置 link,并将样式设置为逐字或预格式化文本。
例如,假设我逐字记录:
ALTER TABLE
有什么方法可以在某个地方 link 吗,比如 :ref:...
或者甚至只是一个标准的 hyperlink?
如果我没记错的话 "Replacement Text" directive 可以提供帮助。
As reStructuredText doesn't support nested inline markup, the only way to create a reference with styled text is to use substitutions with the "replace" directive:
I recommend you try |Python|_. .. |Python| replace:: Python, *the* best language around .. _Python: http://www.python.org/
所以也许是这样的:
Click |altertable|_ to read details about |altertable|.
----
Blah blah blah
----
.. _altertable:
Here are the details about |altertable|: blah blah blah.
.. |altertable| replace:: ``ALTER TABLE``