如何格式化reStructuredText中指定链接内的文本?
具体来说,我希望从我的第一个脚本中生成以下HTML:
<a href="http://docs.python.org/library/optparse.html"><tt>optparse.OptionParser</tt> documentation documentation</a>
结果应如下所示:
其中“ optparse.OptionParser”部分为固定宽度的字体。
我试过了
```optparse.OptionParser`` <http://docs.python.org/library/optparse.html>`_
但是,这给了
<tt class="docutils literal">`optparse.OptionParser</tt> documentation <<a class="reference external" href="http://docs.python.org/library/optparse.html">http://docs.python.org/library/optparse.html</a>>`_
看起来像这样
``optparse.OptionParser
documentation <http://docs.python.org/library/optparse.html>\
_