1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

QiitaにおけるMarkdown 記法のチートシート

Last updated at Posted at 2019-04-25

はじめに

MarkdownはQiita, GitのREADMEから軽い文書の生成まで多岐にわたり使われています
今回はそのMarkdownの文法をチートシートにまとめました

目次

  1. 見出し
  2. 箇条書き
  3. リスト
  4. 引用
  5. コードブロック
  6. テーブル
  7. 水平線
  8. リンク
  9. 文字
  10. 画像

見出し

行頭に '#' をつける

sample.md
# hoge
## hoge
### hoge
#### hoge
##### hoge

hoge

hoge

hoge

hoge

hoge

箇条書き

行頭に '#', '+', '-' のいずれかをつける

sample.md
* hoge
* hoge
  * hoge
  * hoge
  • hoge
  • hoge
    • hoge
    • hoge

リスト

行頭に '1. 'のように(数字). をつける

sample.md
1. hoge
2. hoge
3. hoge
  1. hoge
  2. hoge
  3. hoge

引用

行頭に '>' をつける

ssample.md
> 祇園精舎の鐘の声, 諸行無常の響きあり. 
> 沙羅双樹の花の色, 盛者必衰の理をあらはす. 
> 奢れる人も久からず. ただ春の夜の夢のごとし.
> 猛き者も遂にはほろびぬ, 偏ひとへに風の前の塵におなじ.
>> めっちゃ面白い

祇園精舎の鐘の声, 諸行無常の響きあり.
沙羅双樹の花の色, 盛者必衰の理をあらはす.
奢れる人も久からず. ただ春の夜の夢のごとし.
猛き者も遂にはほろびぬ, 偏ひとへに風の前の塵におなじ.

めっちゃ面白い

コードブロック

上に空行をいれ, バックククォート3つで挟む.
ほとんどの言語の表示ができる.

```cpp:sample.cpp
cout << "HelloWorld" << endl;
```

sample.cpp
cout << "HelloWorld" << endl;

テーブル

2 行目の':-----------' 左寄せ ,':-----------:' 中央揃い, '-----------:'右寄せを指定

sample.md
| Left align | Center align | Right align |
|:-----------|------------:|:------------:|
| This       |        This |     This     |
| column     |      column |    column    |
| will       |        will |     will     |
| be         |          be |      be      |
| left       |       right |    center    |
| aligned    |     aligned |   aligned    |
Left align Center align Right align
This This This
column column column
will will will
be be be
left right center
aligned aligned aligned

水平線

'*', '-', '_' を三つ並べる

sample.md
***
---
___



リンク

[表示名](リンク先) でかける

sample.md
[Qiita](http://qiita.com/)
[Yahoo!Japan](http://www.yahoo.co.jp/)

Qiita
Yahoo!Japan

文字

sample.md
hoge
<b>hoge</b>
<i>hoge</i>
~~hoge~~

hoge
hoge
hoge
hoge

画像

sample.md
![momo.jpg](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/353646/93e0e477-e042-0875-ce15-4da76e0676e6.jpeg)

momo.jpg

参照元

Markdown 書き方メモ
Qiita 書き方メモ

1
4
1

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
1
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?