5
17

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.

Markdown

Last updated at Posted at 2017-05-11

見出し

# Title 1

Title 1

## Title 2

Title 2

### Title 3

Title 3

===
---

パラグラフ

A

B

A

B

改行

A
B

A
B

水平線

---
***
___


強調表示

*強調*
強調
**強調**
強調

引用句

>stay foolish!

stay foolish!

>>stay foolish!

stay foolish!

コード

`(バッククォート) ← USキーボードで「Option(⌥)」+「チルダキー(~)」

`code`

code

複数行のコードブロック

```
code1
code2
```
code1
code2

シンタックスハイライト

```ruby (html, css, php, ruby, python…)
print \"hello world\"
```
print \"hello world\"

箇条書き

- item 1
    aaaaaaaa
- item 2
- item 3
  • item 1
    aaaaaaaa
  • item 2
  • item 3

番号付きリスト

1. item 1
2. item 2
3. item 3
  1. item 1
  2. item 2
  3. item 3

自動リンク

<http://google.com>
http://google.com

<xxxxxxxxx@gmail.com>
xxxxxxxxx@gmail.com

インラインリンク

[Google](http://google.com "Title")

Google

外部参照リンク

[Google][1]

[1]: http://google.com \"title\"

Google

画像

![代替テキスト](画像のURL)

![logo image](http://cdn.qiita.com/assets/qiita-rectangle-71910ff07b744f263e4a2657e2ffd123.png)

logo image

![代替テキスト](画像のURL"タイトル")

![logo image](http://cdn.qiita.com/assets/qiita-rectangle-71910ff07b744f263e4a2657e2ffd123.png"Qiita")

logo image

[![代替テキスト](画像のURL"タイトル")](リンク先URL)

[![logo image](http://cdn.qiita.com/assets/qiita-rectangle-71910ff07b744f263e4a2657e2ffd123.png "Qiita")](http://qiita.com/)

logo image

画像 サイズ指定

<img src="画像のURL" width="画像サイズ">

<img src="http://cdn.qiita.com/assets/qiita-rectangle-71910ff07b744f263e4a2657e2ffd123.png" width="50">

5
17
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
5
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?