49
40

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.

新人のためのMarkdown記法まとめてみた

Last updated at Posted at 2017-11-01

##はじめに
Markdown記法は調べたらいくらでも出てきますが、自分のメモとしても残したいなと思い書きました。

##見出し
書き方
#を先頭につけます

# title  
## titile
### title
#### title
##### title
###### title

結果

title

title

title

title

title
title

別の書き方もあります。

title
==

title
--  

結果

title

title

引用表現

書き方
>を先頭に書く

>初めまして。こんにちは

結果

初めまして。こんにちは

##区切り線
書き方は3通りあります
ハイフン3つ
アスタリスク3つ
アンダーバー3つ

---
***
___

結果




##箇条書き

書き方は3通りあります

- item
* item
+ item 

結果

  • item
  • item
  • item

##連番付きリスト
書き方

1. item1
2. item2
3. item3

結果

  1. item1
  2. item2
  3. item3

最初の番号は全て1でも連番付きリストになります。

リンクの表現方法

[ドットインストール](http://dotinstall.com)

結果

ドットインストール

リンクにタイトル属性をつける

[ドットインストール](http://dotinstall.com "タイトルはドットインストール")

結果
3秒ほどカーソルを上にのせて見てください。

ドットインストール

##コードを見やすくする
書き方
バッククオートでコードをはさむ

```
function x() {
return x;
}
```

結果

function x() {
  return x;
}

##インラインでコード表現する場合
書き方
バッククオートを表現したいコードの間に入れる。

この場合、`return x;`はどこに置くのでしょうか

結果

この場合、return x;はどこに置くのでしょうか

##画像を表示する方法
書き方

![logo image](https://cdn.pixabay.com/photo/2017/10/30/01/10/dog-2901205__340.jpg)

結果

logo image

テーブルを表示させる

書き方

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

結果

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

##参考文献
ドットインストール
https://dotinstall.com/lessons/basic_markdown_v2

49
40
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
49
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?