1. Quickstart

1.1. Inline markup

1.1.1. Italic

This is a *paragraph*. It's quite short.

As shown below:

This is a paragraph. It’s quite short.

1.1.2. Bold

This is **another** one.

As shown below:

This is another one.

1.1.3. Incline code

This is ``hello world``.

As shown below:

This is hello world.

1.2. Block

An example::

    This paragraph will result in an indented block of
    text, typically used for quoting other text.

As shown below:

An example:

This paragraph will result in an indented block of
text, typically used for quoting other text.
::

    This is preformatted text, and the
    last "::" paragraph is removed

As shown below:

This is preformatted text, and the
last "::" paragraph is removed

1.3. List

1.3.1. Number list

1. numbers

(2) numbers again

3) and again

As shown below:

  1. numbers
  1. numbers again
  1. and again

1.3.2. Letter list

A. upper-case letters
and it gores over many lines

with two paragraphs and all!

a. lower-case letters

    3. with a sub-list
    4. make sure

I. upper-case roman numerals

i. lower-case roman numerals

As shown below:

  1. upper-case letters and it gores over many lines

    with two paragraphs and all!

  1. lower-case letters
    1. with a sub-list
    2. make sure
  1. upper-case roman numerals
  1. lower-case roman numerals

1.3.3. Definition list

what
    Definition lists associate
    a term with a definition

As shown below:

what
Definition lists associate a term with a definition

1.4. Image

.. image:: _images/sphinx.jpg
   :height: 106
   :width: 160
   :scale: 70
   :alt: sphinx profile
   :align: center

As shown below:

sphinx profile