見出し
# 見出し h1
## 見出し h2
### 見出し h3
#### 見出し h4
##### 見出し h5
###### 見出し h6
強調
イタリック
テキストを単一の _
で囲んで イタリック テキストを作成します:
This is _italic text_.
太字
テキストを二重の **
で囲んで 太字 テキストを作成します:
This is **bold text**.
取り消し線
テキストを二重の ~~
で囲んで取り消し線 テキストを作成します:
This is ~~strikethrough~~ text.
見出し
## ブロック引用
`````>````` を使用してブロック引用を作成し、二重の `````>>````` でさらにインデントします:
``````bash
> Blockquote
>> Indented Blockquote
リスト
順不同リスト
-
を使用して順不同リストを作成し、リストのサブアイテムには二つのスペースをインデントします:
- List
- List
- List
- List
順序付きリスト
番号付きアイテムを使用し、その後に `.:
1. One
2. Two
3. Three
水平線
---
を使用して水平線を作成します:
---
テーブル
| A | B |
| ----- | ----- |
| Alpha | Bravo |
例コード
インラインコード
インラインコードを単一の `\``
バックティックで囲みます:
This is `inline code` wrapped with backticks
例を文書化する際は、マークダウン `\``
コードブロックを使用してコードサンプルの開始と終了を示します:
フェンシングコードブロック
Javascript
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
JSON
{
"firstName": "John",
"lastName": "Smith",
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
}
],
"children": [],
"spouse": null
}
CSS
foo {
padding: 5px;
margin-right: 3px;
}
.bar {
background-color: #f00;
}
SCSS
foo {
padding: 5px;
margin-right: 3px;
}
.bar {
background-color: #f00;
}
HTML
<span class="my-class">Example</span>
PHP
$array = array(
"foo" => "bar",
"bar" => "foo",
);
Markdown
This is _italic text_. This is **bold text**.