見出し
h3
h4
h5
h6
## 見出し
### h3
#### h4
##### h5
###### h6 リスト
- Item1
- Item2
- Item2-1
- Item2-2
- Item3
- Item1
- Item2
- Item2-1
- Item2-2
- Item3 - Item1
- Item2
- Item3
1. Item1
2. Item2
3. Item3 Task1
Task3
- [ ] Task1
- [x] Task2
- [ ] Task3 コードブロック
const message: string = "Hello, World!";
console.log(message); ```typescript:hello.ts
const message: string = "Hello, World!";
console.log(message);
``` コードブロックにdiffを表示する
const message: string = "Hello, World!"; // [!code --]
const message: string = "Hello, New World!"; // [!code ++]
console.log(message); ```typescript:hello.ts
const message: string = "Hello, World!"; // [\\!code --]
const message: string = "Hello, New World!"; // [\\!code ++]
console.log(message);
``` コードブロックの行をハイライト
const message: string = "Hello, World!"; // [!code highlight]
console.log(message); ```typescript:hello.ts
const message: string = "Hello, World!"; // [\\!code highlight]
console.log(message);
``` コードブロックの文字をハイライト
// [!code word:Hello]
const message: string = "Hello, World!";
console.log(message); ```typescript:hello.ts
// [\\!code word:Hello]
const message: string = "Hello, World!";
console.log(message);
``` インラインコード
インラインで some code を記述できます。
インラインで `some code` を記述できます。 テキスト装飾
太字、イタリック、取り消し線でテキストを装飾できます。
太字
テキストが 太字 になります。
テキストが **太字** になります。 イタリック
テキストが イタリック になります。
テキストが _イタリック_ になります。 イタリック+太字
テキストが イタリック太字 になります。
テキストが **_イタリック太字_** になります。 取り消し線
テキストに 取り消し線 を表示します。
テキストに ~~取り消し線~~ を表示します。 表
| Header | Header | Header |
|---|---|---|
| Data | Data | Data |
| Data | Data | Data |
| Header | Header | Header |
| ------ | ------ | ------ |
| Data | Data | Data |
| Data | Data | Data | リンク
[Title](<https://example.com>) 引用
この文章は引用ですこの文章は引用です
この文章は引用です
> この文章は引用です
>
> この文章は引用です
>
> この文章は引用です 画像
 区切り線
--- ダイアグラム・チャート(Mermaid)
graph TD;
A-->B;
A-->C;
B-->D;
C-->D; ```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```