1Examples from Wikipedia page
2============================
3
4Lists
5-----
6
7- A bullet list item
8- Second item
9
10  - A sub item
11
12- Spacing between items creates separate lists
13
14- Third item
15
161) An enumerated list item
17
182) Second item
19
20   a) Sub item that goes on at length and thus needs
21      to be wrapped. Note the indentation that must
22      match the beginning of the text, not the
23      enumerator.
24
25      i) List items can even include
26
27         paragraph breaks.
28
293) Third item
30
31#) Another enumerated list item
32
33#) Second item
34
35Images
36------
37
38.. image:: /path/to/image.jpg
39
40Named links
41-----------
42
43A sentence with links to Wikipedia_ and the `Linux kernel archive`_.
44
45.. _Wikipedia: https://www.wikipedia.org/
46.. _Linux kernel archive: https://www.kernel.org/
47
48Anonymous links
49---------------
50
51Another sentence with an `anonymous link to the Python website`__.
52
53__ https://www.python.org/
54
55Literal blocks
56--------------
57
58::
59
60  some literal text
61
62This may also be used inline at the end of a paragraph, like so::
63
64  some more literal text
65
66.. code:: python
67
68   print("A literal block directive explicitly marked as python code")
69