LoginSignup
0
0

More than 1 year has passed since last update.

[WIP]オレ的Markdownチートシート

Last updated at Posted at 2022-03-31

記事内容

自分用によく使うMarkdownをまとめました。
今後も追加していくつもりです。。。(多分)

Markdown

  • リスト表示
(番号なし)
* list1
* list2
* list3

(番号あり)
1. list1
2. list2
3. list3
  • チェックボックス
- [x] 実施済み
- [ ] 未実施
  • テーブル
| 左揃え | 中横揃え | 右寄せ |
| :---- | :----: | ---:  | 
| row1  | row2   | row3  |
  • 打ち消し
~~打ち消し文字~~
  • アコーディオン(?)
<details>
<summary>
タイトル
</summary>
ボディ
</details>  
  • 引用
>引用本文1
>引用本文2  
>引用本文3
>引用本文4
  • url
[Google](https://www.google.com) 
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