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

More than 3 years have passed since last update.

Qiitaの書き方 超初心者用

Last updated at Posted at 2020-07-26

##はじめに
Qiita Markdownの書き方を自分用にまとめています。

##見出しの書き方
文頭に#を付けると見出しになる。
#の数で見出しの大きさを変えられる。

##見出し1
###見出し2

##見出し1
###見出し2

##コードの書き方
```でコードをくくる。

```C++:title
printf("Hello World\n);
```
と書くと

title

printf("Hello World\n");


##引用の書き方
\>を書く。改行すると元に戻る。

>\>あいうえお
\>\>かきくけこ

で

>あいうえお
>>かきくけこ

##表の書き方
>\|左揃え|中央揃え|右揃え|
|:---|:---:|---:|
|a|b|c|
|d|e|f|

で

>|左揃え|中央揃え|右揃え|
|:---|:---:|---:|
|a|b|c|
|d|e|f|

##イタリック、太字の書き方
* イタリック

>\_italic\_
\*italic\*

で
>_italic_
*italic*

* 太字

>\_\_太字\_\_
\*\*太字\*\*

で

>__太字__
**太字**

##リストの書き方
リストの上下は改行する。また、記号の後に半角スペースを入れる。

* 番号なし

>\* リスト1
\+ リスト2
\- リスト3

で

>* リスト1

>+ リスト2

>- リスト3

* 番号付き

>1\. リスト1
2\. リスト2
3\. リスト3

で

>1. リスト1
2. リスト2
3. リスト3

##エスケープ
\\を前につける。
>\\#見出し
で
\#見出し
となる。





0
0
2

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?