57
51

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Qiita Markdown 早見メモ

Last updated at Posted at 2013-09-30

基本はチートシートですが、「アレの書き方なんだっけ?」の確認用として、もうちょっと簡素なメモがほしかったので、投稿練習がてら作ってみました。

コードブロック

md
```c:sample.c
// Code Block
```
sample.c
// Code Block

コードブロック(diff)

md
```diff_c:sample.c
- // Code Block
+ // Code Blooock!
```
sample.c
- // Code Block
+ // Code Blooock!

コードスパン

md
this is `Code Span`.

this is Code Span.

pre

md
   4 spaces make pre
4 spaces make pre

補足

md
:::note info
information
:::

:::note warn
warning
:::

:::note alert
alert
:::

information

warning

alert

ヘッダー

md
# h1
## h2
### h3

h1

h2

h3

リンク

md
[Qiitaトップ](http://qiita.com/)

Qiitaトップ

文字装飾

md
*ABC* or _ABC_
**太字** or __太字__
~~打ち消し~~

ABC or ABC
太字 or 太字
打ち消し

引用

md
> 1行目
> 2行目

1行目
2行目

順序なしリスト

md
* item1
* item2
  • item1
  • item2

順序ありリスト

md
1. item1
1. item2
  1. item1
  2. item2

エスケープ

\\(バックスラッシュ)でMarkdownをエスケープできます


2013/10/09 追記
コードサンプル部分をpre化しました。
・・・うん、こっちの方がやりやすいですね。
ご助言いただいた、noromanbaさんに感謝

2024/04/26 追記
なんか10年ぶりに見に来たら細かいところが変わっていたので更新しました。
ところで、pre構文が公式チートシートから無くなってる・・・?

57
51
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
57
51

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?