How to create a nested list in reStructuredText? I am trying to create a properly nested list using the following code (following Sphinx and docutils docs): 1. X a. U b. V c. W 2. Y 3. Z I expect this to result in two OLs but I get the following output instead: X U V W Y Z What am I doing wrong? Is it not possible to get the following result? X U V W Y Z Make sure the nested list is indented to ..