使用sphinx,我想生成"导航"带有相对链接到其他文件的部分。
可能的输入文件
test1.rst
link to :doc:`test2`
test2.rst
This is a test.
nav.rst
link to :doc:`test2`
测试\ test3.rst
.. include:: ../nav.rst
输出文件
test1.html
link to <a href="./test2.html">test2</a>
test2.html
This is a test.
nav.html
link to <a href="./test2.html">test2</a>
测试/ test3.html
link to test2
但是,test / test3.html的理想输出文件可以是
测试/ test3.html
link to <a href="../test2.html">test2</a>
有可能,我该怎么做?