How to remove bullets from numbered toctree in restructured text?

给你一囗甜甜゛ 提交于 2021-02-04 08:07:25

问题


I am using a toctree in Sphinx to automatically generate a table of contents for a webpage.

.. toctree::
   :maxdepth: 2
   :numbered:

   First
   Second
   Third

which creates (roughly):

    1. First
    1. Second
    1. Third

I want the numbers, but I don't want the bullets. Is there some magic I'm missing that gives me the enumerated list without the bullets?


回答1:


That's a minor annoyance which can be corrected with a custom style.

.toctree-wrapper ul li {
    list-style-type: none;
}

To override the default style sheet, you can add a custom style sheet to your static directory with the above style, then include it by specifying it in the conf.py:

html_css_files = [
    'css/custom.css',
]


来源:https://stackoverflow.com/questions/63820398/how-to-remove-bullets-from-numbered-toctree-in-restructured-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!