How to change default indentation in Sphinx?

My documentation has 4 fingerprints in space, but Sphinx expects 2. When I have nested lists, it converts the indentation to HTML and then creates the list.

This creates UL LI UL LI ...:

* first level

  * second level
  * second level

This creates UL LI BLOCKQUOTE DIV UL LI ...:

* first level

    * second level
    * second level

If I do not specify an empty string, Sphinx will not create locks, but it will see the nested list as a list of definitions.

What configuration do I need to change to get nested lists with 4 indented documents?

+1
source share

Source: https://habr.com/ru/post/1692329/


All Articles