LoginSignup
0
2

More than 5 years have passed since last update.

Markdown 記法

Last updated at Posted at 2018-05-25

Markdown 記法メモ

見出し

記述

sample
# H1
## H2
### H3
#### H4
##### H5
###### H6

表示

H1

H2

H3

H4

H5
H6

引用

記述

sample
> 引用文をここに書く
>> 引用文の入れ子

表示

引用文をここに書く

引用文の入れ子

箇条書き

記述

sample
* リスト1
    * リスト1-1
        * リスト1-1-1
        * リスト1-1-2
    * リスト1-2
* リスト2
    * リスト2-1
    * リスト2-2
* リスト3

表示

  • リスト1
    • リスト1-1
      • リスト1-1-1
      • リスト1-1-2
    • リスト1-2
  • リスト2
    • リスト2-1
    • リスト2-2
  • リスト3

番号付きリスト

記述

sample
1. リスト1
    2. リスト1-1
3. リスト2

表示

  1. リスト1
    1. リスト1-1
  2. リスト2

チェックリスト

記述

sample
* [ ] リスト1
* [x] リスト2

表示

  • リスト1
  • リスト2

水平線

記述

アスタリスク(もしくはハイフン)を3つ以上並べる

sample
***

表示


強調・打ち消し

記述

sample
*イタリック*
**強調**
***強調イタリック***
~~打ち消し~~

表示

イタリック
強調
強調イタリック
打ち消し

テーブル

記述

sample
| 主格 | 所有格 | 目的格 |
|:--|:-:|--:|
| I | my | me |
| you | your | you |
| he | his | him |
| she | her | her |

表示

主格 所有格 目的格
I my me
you your you
he his him
she her her

リンク

記述

sample
https://qiita.com/

[Qiita](https://qiita.com/)

[Qiita](https://qiita.com/ "プログラミングに関する知識を記録・共有するためのサービス")

表示

https://qiita.com/
Qiita
Qiita (タイトル付き)

画像

記述

sample
![shutter.png](https://hogehoge.com/shutter.png)

![shutter.png](https://hogehoge.com/shutter.png "shutter")

表示

shutter_128x128.png

shutter_128x128.png (タイトル付き)

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2