我知道这种失败是文字块的目的,但我想知道是否有任何解决方法来实现这一目标。我的用例是在伪代码的块文字中放置一个超链接,以便引用文档中其他地方的详细信息。
示例:
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_
成为超链接。
答案 0 :(得分:3)
您可以使用parsed-literal
指令:
Subscription request = restApi.user.setPhoto(body)
.compose(RxUtils.applySchedulers())
.subscribe(this::successAddPhoto, this::handleError);
unSubscribeOnDestroy(request);