2017-01-05 63 views
0

我的項目使用了很多替代(.. |apipath| replace:: http://domain/api/v1),我希望能夠在內聯文字塊中使用這個替換。我想類似如下的rST來源:有沒有辦法解析內聯文字?

Request URL: ``|apipath|/endpoint/method/param``

變成下面的HTML輸出:

Request URL: <code>http://domain/api/v1/endpoint/method/param</code>

相反,它輸出作爲

Request URL: <code>|apipath|/endpoint/method/param</code>

你知道得到任何方式這工作?

我試過玩自定義角色和類。我知道parsed-literal指令是可用的,但似乎只創建塊內容,而不是內聯。

回答

0

我不知道如何儘可能,但也許這至少在視覺上接近它。

Request URL: |apipath|\ ``/endpoint/method/param`` 

.. |apipath| replace:: ``http://domain/api/v1`` 

:literal:`http://domain/api/v1`中的替換內容。

相關問題