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.

Markdown基本記法

Posted at

Markdown記法

Qiita記事を書くためにまずはMarkdown記法をまとめます!

マークダウンとは

HTMLなどのマークアップ言語を簡略化できるようにしたもの。

基本的な記法

種類 やり方
見出し # , ##, ###...
スペース 半角スペース2つ
改行 br
リスト -テキスト
番号付きリスト 1.テキスト
リンク [テキスト] (URL)
太字 ** **
斜体 * *
文字色 < font color="Red">< /font>
引用 >テキスト >>テキスト
インライン ` で開始終了
コード ``` で開始終了
打ち消し ~~で開始終了

見出し

#一つ

##2つ

###3つ

####4つ

スペース

半 角 ス ペ ー ス が 2 つ

改行

< br>

を入れる

リスト

"-"を入れる

太字

"*"2つではさむ
太字

斜体

"*"1つではさむ
aaa

文字色

< font color="Red">< /font>
赤い文字

引用

">"をいれる

引用文 

">"を2ついれる

引用文

インライン

テキストインライン

コードの挿入

(`)を3つで開いて閉じる
(```)の後にruby:qiita.rbなどを入れる

結果

qiita.rb
code input

打ち消し

(~~)ではさむ
うちけし

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