如何在Sphinx toctree中对标题进行排序?

时间:2019-01-30 16:12:52

标签: sorting python-sphinx tableofcontents

我需要按标题对toctree进行排序。 我使用:glob:属性,它仅按我的文件名排序。

您有解决方案吗?

谢谢

示例:

.. toctree::
   :maxdepth: 1
   :titlesonly:
   :glob:

   myfile1.rst
   myfile2.rst

myfile1.rst

BBBB
=====

myfile2.rst

AAAA
=====

我在HTML页面中获取:

BBBB
AAAA

,我希望拥有:

AAAA
BBBB

1 个答案:

答案 0 :(得分:0)

startMonitor() { KeepAwake.activate(); this.setState({ monitorStatus: true }, this.runMonitor ); } runMonitor() { while(this.state.monitorStatus) { if(this.state.beginWait) { this.wait(5000); } if(!this.state.isTransmitting) { this.checkSound(); } } } 是不必要的,因为您不需要使用通配符。

您可以手动对toctree directive中的文件进行排序。不需要文件扩展名。

glob