見出し

  1. # 見出し h1
  2. ## 見出し h2
  3. ### 見出し h3
  4. #### 見出し h4
  5. ##### 見出し h5
  6. ###### 見出し h6

注: h1 – h4 の項目は自動的に目次に追加されます。

強調

イタリック

テキストを単一の _ で囲んで イタリック テキストを作成します:

  1. This is _italic text_.

太字

テキストを二重の ** で囲んで 太字 テキストを作成します:

  1. This is **bold text**.

取り消し線

テキストを二重の ~~ で囲んで
取り消し線 テキストを作成します:

  1. This is ~~strikethrough~~ text.

見出し

  1. ## ブロック引用
  2. `````>````` を使用してブロック引用を作成し、二重の `````>>````` でさらにインデントします:
  3. ``````bash
  4. > Blockquote
  5. >> Indented Blockquote

リスト

順不同リスト

- を使用して順不同リストを作成し、リストのサブアイテムには二つのスペースをインデントします:

  1. - List
  2. - List
  3. - List
  4. - List

順序付きリスト

番号付きアイテムを使用し、その後に `.:

  1. 1. One
  2. 2. Two
  3. 3. Three

水平線

--- を使用して水平線を作成します:

  1. ---

テーブル

  1. | A | B |
  2. | ----- | ----- |
  3. | Alpha | Bravo |

例コード

インラインコード

インラインコードを単一の `\`` バックティックで囲みます:

  1. This is `inline code` wrapped with backticks

例を文書化する際は、マークダウン `\`` コードブロックを使用してコードサンプルの開始と終了を示します:

フェンシングコードブロック

Javascript

  1. var foo = function (bar) {
  2. return bar++;
  3. };
  4. console.log(foo(5));

JSON

  1. {
  2. "firstName": "John",
  3. "lastName": "Smith",
  4. "address": {
  5. "streetAddress": "21 2nd Street",
  6. "city": "New York",
  7. "state": "NY",
  8. "postalCode": "10021-3100"
  9. },
  10. "phoneNumbers": [
  11. {
  12. "type": "home",
  13. "number": "212 555-1234"
  14. },
  15. {
  16. "type": "office",
  17. "number": "646 555-4567"
  18. }
  19. ],
  20. "children": [],
  21. "spouse": null
  22. }

CSS

  1. foo {
  2. padding: 5px;
  3. margin-right: 3px;
  4. }
  5. .bar {
  6. background-color: #f00;
  7. }

SCSS

  1. foo {
  2. padding: 5px;
  3. margin-right: 3px;
  4. }
  5. .bar {
  6. background-color: #f00;
  7. }

HTML

  1. <span class="my-class">Example</span>

PHP

  1. $array = array(
  2. "foo" => "bar",
  3. "bar" => "foo",
  4. );

Markdown

  1. This is _italic text_. This is **bold text**.