.. test-rtd documentation master file, created by sphinx-quickstart on Sat Nov 4 12:31:36 2017. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to test-rtd's documentation! ==================================== .. toctree:: :maxdepth: 2 :caption: Contents: Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` Custom Sections =============== - A bullet list item - Second item - A sub item - Spacing between items create separate lists - Third Item 1) An enumerated list item 2) Second item a) Sub item that goes on at length and thus needs to be wrapped. Note the indentation that must match the beginning of the text, not the enumerator i) List items can even include paragraph breaks 3) Third item #) Another enumerated list item #) Second item Images ====== .. image:: https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Great_Sphinx_of_Giza_May_2015.JPG/580px-Great_Sphinx_of_Giza_May_2015.JPG Named Links =========== A sentence with links to Wikipedia_ and the `Linux kernel archive`_. .. _Wikipedia: https://www.wikipedia.org/ .. _Linux kernel archive: https://www.kernel.org/ Anonymous Links =============== Another sentence with an `anonymous link to the Python website`__. __ https://www.python.org/ Literal Blocks ============== :: Some literal text This may also be used inline at the end of a paragraph, like so:: Some more literal text .. code:: python import math print('A literal block explicitly marked as Python code')