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
Solution 1:
That's a minor annoyance which can be corrected with a custom style.
.toctree-wrapperulli {
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',
]
Post a Comment for "How To Remove Bullets From Numbered Toctree In Restructured Text?"