Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

css - How to remove bullets from numbered toctree in restructured text?

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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',
]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...