表示例

タイポグラフィ

===========
h1. Heading
===========

h2. Heading
===========

-----------
h3. Heading
-----------

h4. Heading
-----------

h1. Heading

h2. Heading

h3. Heading

h4. Heading

h5. Heading
h6. Heading

画像

.. image:: img/sample.png
../_images/sample1.png
.. figure:: img/sample.png
   :scale: 50 %
   :alt: sample image
sample image

テーブル

+---------+-----------+------------+-------------------+
|         | 使用例    |  書き方    |  HTMLタグ         |
+=========+===========+============+===================+
|強調     |*文字列*   | \*で囲む   | <em>              |
+---------+-----------+------------+-------------------+
|強い強調 |**文字列** | \*\*で囲む | <strong>          |
+---------+-----------+------------+-------------------+
|コード   |``文字列`` |\`\`で囲む  |<span class="pre"> |
+---------+-----------+------------+-------------------+
  使用例 書き方 HTMLタグ
強調 文字列 *で囲む <em>
強い強調 文字列 **で囲む <strong>
コード 文字列 ``で囲む <span class=”pre”>

コード

ふつうの文章::

    コードブロック

ふつうの文章
.. code-block:: python

      import sys

      print sys.path

引用

| これらの行は
| ソースファイルの通りに
| 改行されます。

example

これらの行は
ソースファイルの通りに
改行されます。

ダウンロード用リンク

rst

:download:`this file <examples.rst>`

出力例

this file

警告

Hint

.. hint::

    This is a hint directive!

Hint

This is a hint directive!

Note

.. note::

    This is a note directive!

Note

This is a note directive!

Warning

.. warning::

    This is a warning directive!

Warning

This is a warning directive!

Tip

.. tip::

    This is a tip directive!

Tip

This is a tip directive!

Important

.. important::

    This is a important directive!

Important

This is a important directive!

Error

.. error::

    This is a error directive!

Error

This is a error directive!

Caution

.. caution::

    This is a caution directive!

Caution

This is a caution directive!

Danger

.. danger::

    This is a danger directive!

Danger

This is a danger directive!