2
2

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の記事の書き方

Last updated at Posted at 2019-03-09

マークダウン記法とか使ったこと無いので、練習も兼ねて。

見出しの書き方

"# 見出し"で大きい見出し。
'#'を増やすと小見出しが作れるみたい。

強調

"**強調**"と書くと"強調"<-の様に文字が太くなり強調される。

リンク

[リンク](http://...)

twitter

コード

"```(バッククォートx3)"で囲む。

test.py
import numpy as np
#importしただけ
print("Hello World!")

リスト

- リスト 1
- リスト 2

と書くと、

  • リスト 1
  • リスト 2

4つスペース入れてインデントすると、

- リスト 1
    - リスト 1-1
  • リスト 1
    • リスト 1-1
1. 番号付きリスト 1
2. 番号付きリスト 2
3. 番号付きリスト 3
- [ ] チェックボックス 1
- [ ] チェックボックス 2
- [x] チェックボックス 3

は、

  1. 番号付きリスト 1
  2. 番号付きリスト 2
  3. 番号付きリスト 3
  • チェックボックス 1
  • チェックボックス 2
  • チェックボックス 3

という具合。

とりあえず

ここまで。
とにかく、最初のうちは質にこだわらず、量をこなしていくとこを考えようと思う。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?