LoginSignup
0
0

【随時更新】フォーマット兼Markdown記法 チートシート

Posted at

目的

メモ

結論

メモ

解説

メモ

参考

Markdown記法 チートシート

メモ





Markdown記法 チートシート

順序無しリスト

「*」or「+」or「-」+「半角スペース」

番号付きリスト

  1. テスト
  2. テスト
  3. テスト

「数字.」+「半角スペース」

チェックボックス

  • タスク1
  • タスク2

水平線






* * *
***
*****
- - -
---------------------------------------

リンク

Qiita

コードユニット

test.py
print("test");

diff

- print("test");
+ print("test123");

italic type

_ か * で囲む italic type

太文字

__ か ** で囲む 太字

打ち消し線

~~ で囲む。 打ち消し

インライン表示

puts 'Qiita'

タイトルありの画像を埋め込む

Qiita
'''

テーブル

3x2

1 2 3
a b c
d e f

インフォメーション・警告

インフォメーション
infoは省略可能です。

警告
○○に注意してください。

より強い警告
○○しないでください。

引用

文頭に>を置くことで引用になります。
複数行にまたがる場合、改行のたびにこの記号を置く必要があります。
引用の上下にはリストと同じく空行がないと正しく表示されません
引用の中に別のMarkdownを使用することも可能です。

これはネストされた引用です。

0
0
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
0