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

问题描述 投票: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 glob toctree
1个回答
1
投票

glob 是不必要的,因为你没有使用globbing表达式。

你可以在 toctree 指令. 文件扩展名是不必要的。

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

    myfile2
    myfile1
© www.soinside.com 2019 - 2024. All rights reserved.