是否可以在ReST文字块中插入超链接?

时间:2017-04-13 09:26:01

标签: python-sphinx restructuredtext docutils

我知道这种失败是文字块的目的,但我想知道是否有任何解决方法来实现这一目标。我的用例是在伪代码的块文字中放置一个超链接,以便引用文档中其他地方的详细信息。

示例:

Look at this JSON pseudo code
-----------------------------

::

  {
    "id": <number>,
    "name": <string>,
    "big_property": <see schema of big_object_>
  }

And the details of big object
-----------------------------

.. _big_object:

::

  {
     <another_schema>
  }

我希望在第一个文字块中,big_object_成为超链接。

1 个答案:

答案 0 :(得分:3)

您可以使用parsed-literal指令:

Subscription request = restApi.user.setPhoto(body)
                .compose(RxUtils.applySchedulers())
                .subscribe(this::successAddPhoto, this::handleError);
        unSubscribeOnDestroy(request);