reStructuredText

# Lists
* This is a bulleted list.
* It has two items, the second
  item uses two lines.

1. This is a numbered list.
2. It has two items too.

#. This is a numbered list.
#. It has two items too.

# Nested Lists
* this is
* a list

  * with a nested list
  * and some subitems

* and here the parent list continues

# external link
 `Link text <https://domain.invalid/>`_

# code block
.. code-block:: console|html|python|text

    def myfunction():
        return 42

# list table
    .. list-table::
    :header-rows: 1

    * - Cheat Sheets
      - Check Lists
      - Documents
    * - :ref:`Tickler File <gtd_tickler_file_cheat_sheet>`
      -
      - :ref:`Introduction <gtd-introduction>`

# Citations
# Are "global" and can be referenced from all files.

Lorem ipsum [CIT2002]_ dolor sit amet.

.. [CIT2002] This is the citation.  It's just like a footnote,
   except the label is textual.

# Footnotes
Lorem ipsum [#f1]_ dolor sit amet ... [#f2]_ ... Lorem ipsum [#f1]_

.. rubric:: Footnotes

.. [#f1] Text of the first footnote.
.. [#f2] Text of the second footnote.

References

  1. Docutils

  2. Quick reStructuredText

  3. Sphinx reStructuredText Primer