```
# :memo: Link
## Markdown 標準
`[表示テキスト](URL)`でリンクに変換されます。
```
[Google](https://www.google.co.jp/)
```
[Google](https://www.google.co.jp/)
## Crowi 互換
```
[/Sandbox]
```
[/Sandbox]
## Pukiwiki like linker
最も柔軟な Linker です。
記述中のページを基点とした相対リンクと、表示テキストに対するリンクを同時に実現できます。
```
[[./Bootstrap4]]
Bootstrap4のExampleは[[こちら>./Bootstrap4]]
```
[[./Bootstrap4]]
Bootstrap4のExampleは[[こちら>./Bootstrap4]]
# :memo: Lists
## Ul 箇条書きリスト
ハイフン`-`、プラス`+`、アスタリスク`*`のいずれかを先頭に記述します。
ネストはタブで表現します。
```
- リスト1
- リスト1_1
- リスト1_1_1
- リスト1_1_2
- リスト1_2
- リスト2
- リスト3
```
- リスト1
- リスト1_1
- リスト1_1_1
- リスト1_1_2
- リスト1_2
- リスト2
- リスト3
## Ol 番号付きリスト
`番号.`を先頭に記述します。ネストはタブで表現します。
番号は自動的に採番されるため、すべての行を1.と記述するのがお勧めです。
```
1. 番号付きリスト1
1. 番号付きリスト1-1
1. 番号付きリスト1-2
1. 番号付きリスト2
1. 番号付きリスト3
```
1. 番号付きリスト1
1. 番号付きリスト1-1
1. 番号付きリスト1-2
1. 番号付きリスト2
1. 番号付きリスト3
## タスクリスト
```
- [ ] タスク 1
- [x] タスク 1.1
- [ ] タスク 1.2
- [x] タスク2
```
- [ ] タスク 1
- [x] タスク 1.1
- [ ] タスク 1.2
- [x] タスク2
# :memo: Table
## Markdown 標準
```markdown
| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
OR
Left align | Right align | Center align
:--|--:|:-:
This | This | This
column | column | column
will | will | will
be | be | be
left | right | center
aligned | aligned | aligned
```
| Left align | Right align | Center align |
|:-----------|------------:|:------------:|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
## TSV
~~~
``` tsv
Content Cell Content Cell
Content Cell Content Cell
```
~~~
``` tsv
Content Cell Content Cell
Content Cell Content Cell
```
## TSV (ヘッダー付き)
~~~
``` tsv-h
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
```
~~~
``` tsv-h
First Header Second Header
Content Cell Content Cell
Content Cell Content Cell
```
## CSV
~~~
``` csv
Content Cell,Content Cell
Content Cell,Content Cell
```
~~~
``` csv
Content Cell,Content Cell
Content Cell,Content Cell
```
## CSV (ヘッダー付き)
~~~
``` csv-h
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
```
~~~
``` csv-h
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
```
# :memo: Footnote
脚注への参照[^1]を書くことができます。また、インラインの脚注^[インラインで記述できる脚注です]を入れる事も出来ます。
長い脚注は[^longnote]のように書くことができます。
[^1]: 1つめの脚注への参照です。
[^longnote]: 脚注を複数ブロックで書く例です。
後続の段落はインデントされて、前の脚注に属します。
# :memo: Emoji
:smiley: :smile: :laughing: :innocent: :drooling_face:
:family: :man-boy: :man-girl: :man-girl-girl: :woman-girl-girl:
:+1: :-1: :open_hands: :raised_hands: :point_right:
:apple: :green_apple: :strawberry: :cake: :hamburger:
:basketball: :football: :baseball: :volleyball: :8ball:
:hearts: :broken_heart: :heartbeat: :heartpulse: :heart_decoration:
:watch: :gear: :gem: :wrench: :email:
# :heavy_plus_sign: 更に…
- Bootstrap4 のタグを使う
- :arrow_right: [/Sandbox/Bootstrap4]
- 図表を書く
- :arrow_right: [/Sandbox/Diagrams]
- 数式を書く
- :arrow_right: [/Sandbox/Math]