如何使用glob对toctree中的标题进行排序?

问题描述 投票:0回答:1

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

您有解决方案吗?

示例:

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

   myfile1.rst
   myfile2.rst

myfile1.rst

BBBB
=====

myfile2.rst

AAAA
=====

我在HTML页面中获得:

BBBB
AAAA

而且我想拥有:

AAAA
BBBB
sorting python-sphinx toctree
1个回答
1
投票

[glob是不必要的,因为您不使用全局表达式。

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

toctree
© www.soinside.com 2019 - 2024. All rights reserved.