0
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のMarkdown記法まとめ

Posted at

見出し

入力
# midashi_1
## midashi_2
### midashi_3

に対して、出力
スクリーンショット 2019-04-13 18.15.23.png

強調、取り消し、コード記法

入力
**EMPHASIS**
*emphasis*
~~deleted~~
'i_am_code'



'''java:sample.java
System.out.println("sample text");
'''

'''py:sample.py
pandas.groupby("TENPO_CD").size()
'''

注意上の入力例においてシングルクオートの位置にはバッククオートを入力してください。macでは「shift+@」。)
に対して、出力

スクリーンショット 2019-04-13 18.35.18.png

リスト、水平線、番号付きリスト

入力

- dir1
    - dir1/subdir1
        - dir1/subdir1/file1
- dir2
    - dir2/file1
    - dir2/file2
    - dir2/file3
    
---
1. いろはに
2. ほへと
    3. ちりぬるを
    4. わかよ
        5. たれそ
    679. つねならむ
    680. うゐの
3213413545. おくやま

に対して、出力は
スクリーンショット 2019-04-13 19.32.01.png

引用

入力
> citation text

>citaion
text

>citation

text

>ciTx
>>ciTx in ciTx

に対して、出力は
スクリーンショット 2019-04-13 19.37.26.png

チェックボックス、リンク、表

入力

- [ ] チェックボックス1
- [x] チェックボックス2




[東京大学のホームページ](https://www.u-tokyo.ac.jp/ja/index.html)




| Left align       |       Right align |    Center align    |
|:-----------------|------------------:|:------------------:|
| This             |              This |        This        |
| column           |            column |       column       |
| will             |              will |        will        |
| be               |                be |         be         |
| left             |             right |       center       |
| aligned          |           aligned |      aligned       |

に対して、出力は
スクリーンショット 2019-04-13 19.39.21.png

画像

ドラッグ&ドロップで可能

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