詳しく見る

Markdown構文チートシート

すべての基本Markdown構文のクイックリファレンス

ライブプレビューを試す

このチートシートは、一般的なMarkdown構文のすべてのクイックリファレンスを提供します。このページをブックマークして、執筆中にご活用ください。各セクションにMarkdown構文とその出力結果が含まれています。

テキストフォーマット

要素構文結果
太字**bold**bold
斜体*italic*italic
太字+斜体***both***both
取り消し線~~struck~~struck
インラインコード`code`code

見出し

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

ハッシュ記号の後にスペースを必ず入れてください。

リスト

順序なしリスト

- Item one
- Item two
  - Nested item
- Item three

順序付きリスト

1. First
2. Second
3. Third

タスクリスト

- [x] Completed task
- [ ] Incomplete task

リンクと画像

リンク

[Link Text](https://example.com)
[Link with Title](https://example.com "Title")

画像

![Alt Text](image.jpg)
![Alt Text](image.jpg "Image Title")

参照リンク

[Link Text][ref]

[ref]: https://example.com

コード

インラインコード

Use `backticks` for inline code.

コードブロック

```
Code block without syntax highlighting
```

シンタックスハイライト付きコードブロック

```javascript
const greeting = "Hello, World!";
console.log(greeting);
```

テーブル

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

テーブルの配置

| Left | Center | Right |
|:-----|:------:|------:|
| L    | C      | R     |

引用

> This is a blockquote.
>
> It can have multiple paragraphs.

水平線

---

***___も使用できます。

文字のエスケープ

リテラル文字を表示するにはバックスラッシュを使用します:

\*not italic\*
\# not a heading

エスケープできる文字:\ ` * _ {} [] () # + - . !

関連リソース

Markdown構文チートシート | Markdown2ANY | Markdown2ANY