2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita用Markdown備忘録

Posted at

1. 見出し

書き方
### sample

出力結果

sample


2. インラインコード

書き方
`sample`

出力結果
sample


3. 打ち消し線

書き方
~~sample~~

出力結果
sample


4. 番号付きリスト

書き方
1.
1.
1.

出力結果


5. 強調

書き方
**sample**
__sample__
<strong>sample</strong>

出力結果
sample
sample
sample


6. リンク

書き方
[sample](https://qiita.com/)

出力結果
sample


7. リスト

書き方
- sample
+ sample
* sample

出力結果

  • sample
  • sample
  • sample

8. コードブロック

書き方
```
sample
```

出力結果

sample

9. 引用

書き方
>sample
>>sample

出力結果

sample

sample


10. 水平線

書き方
---
***

出力結果



11. テーブル

書き方
|タイトル|タイトル|タイトル|タイトル|
|---|---|:---:|---:|
|sample|sample|sample|sample|

出力結果

タイトル タイトル タイトル タイトル
sample sample sample sample

12. マークダウン無効

書き方
\#見出し

出力結果
#見出し


13. 文中の改行

書き方
sample<br>sample<br>sample

出力結果
sample
sample
sample


14. チェックボックス

書き方
- [ ] 未完了
- [x] 完了

出力結果

  • 未完了
  • 完了

15. 画像埋め込み

書き方
![altテキスト](画像URL)

出力結果
altテキスト


16. 絵文字

書き方
:smile:
:rocket:
:warning:

出力結果
:smile:
:rocket:
:warning:


17. 折りたたみ

書き方
<details>
<summary>タイトル</summary>
内容
</details>

出力結果

タイトル 内容

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?