マークダウンサンプル

見出し

syntax

1234567891011
# header1ヘッダー1

## header2ヘッダー2

### header3ヘッダー3

#### header4ヘッダー4

##### header5ヘッダー5

###### header6ヘッダー6

output

header1ヘッダー1

header2ヘッダー2

header3ヘッダー3

header4ヘッダー4

header5ヘッダー5
header6ヘッダー6

文字

吾輩は​猫である。​名前は​まだ​無い。​どこで​生れたかとんと​見当が​つかぬ。​何でも​薄暗いじめじめした所で​ニャーニャー泣いていた​事だけは​記憶している。​吾輩は​ここで​始めて​人間と​いう​ものを​見た。​しかもあとで​聞くと​それは​書生と​いう​人間中で​一番​獰悪な​種族であった​そうだ。​この​書生と​いうのは​時々​我々を​捕えて​煮て​食うと​いう​話である。​しかし​その​当時は​何と​いう​考も​なかったから​別段恐しいとも​思わなかった。​ただ​彼の​掌に​載せられてスーと​持ち上げられた​時何だか​フワフワした​感じが​あったばかりである。​掌の​上で​少し​落ちついて​書生の​顔を​見たのが​いわゆる​人間と​いう​ものの​見始であろう。​この​時妙な​ものだと​思った​感じが​今でも​残っている。​第一毛を​もって​装飾されべきはずの​顔が​つる​つるしてまるで​薬缶だ。​その​後猫にも​だいぶ​逢ったが​こんな​片輪には​一度も​出会わした​事が​ない。​のみならず顔の​真中が​あまりに​突起している。​そうして​その​穴の​中から​時々​ぷう​ぷうと​煙を

リンク

syntax

12345
https://wagomu.me/

[輪ごむの空き箱](https://wagomu.me/)

[輪ごむの空き箱](https://wagomu.me/ "輪ごむの空き箱")

output

https://wagomu.me/

輪ごむの​空き箱

輪ごむの​空き箱

リスト

箇条​書き

syntax

12345
- list1リスト1
- list2リスト2
	- ネストしたlist2-1リスト2-1
	- ネストしたlist2-2リスト2-2
- list3リスト3

output

番号付きリスト

syntax

1234
1. 番号付きlist1
2. 番号付きlist2
	1. ネストした番号付きlist2-1
	2. ネストした番号付きlist2-2

output

  1. 番号付きlist1
  2. 番号付きlist2
    1. ネストした​番号付きlist2-1
    2. ネストした​番号付きlist2-2

引用

syntax

12
> 引用文 inyo
> ですよー

output

引用文 inyo
ですよー

引用文の​ネスト

syntax

12345
> 引用がネストされることもあります。
>
> > inyo no nest
> >
> > > さらにネスト

output

引用が​ネストされる​こともあります。

inyo no nest

さらに​ネスト

引用と​脚注

syntax

1234
> 吾輩は猫である。名前はまだない。
> — <cite>「吾輩は猫である」[^1]</cite>より引用

[^1]: 『吾輩は猫である』(わがはいはねこである)は、夏目漱石の長編小説であり、処女小説である。

output

吾輩は​猫である。​名前は​まだない。
「吾輩は​猫である」1より​引用

コードブロック

syntax

123456789101112
```html
<!doctype html>
<html lang="ja">
  <head>
    <meta charset="utf-8" />
    <title>Example HTML5 Document</title>
  </head>
  <body>
    <p>Test</p>
  </body>
</html>
```

output

12345678910
<!doctype html>
<html lang="ja">
  <head>
    <meta charset="utf-8" />
    <title>Example HTML5 Document</title>
  </head>
  <body>
    <p>Test</p>
  </body>
</html>

タイトル付きコードブロック

syntax

123
```ts title="sample.ts"
console.log('Hello world.');
```

output

sample.ts
1
console.log('Hello world.');

テーブル

123
456
789

文字の​装飾

syntax

1234
|    斜体   | 太字     | 打ち消し線      |  インラインコード  |
| --------- | -------- | --------------- | ------------------ |
| _italics_ | **bold** | ~negative line~ | `code`             |
| _斜体_    | **太字** | ~打ち消し線~    | `インラインコード` |

output

斜体太字打ち消し線インラインコード
italicsboldnegative linecode
斜体太字打ち消し線インラインコード

画像

その​他 abbr, sub, sup, kbd, mark

syntax

123456789
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.

H<sub>2</sub>O

X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>

Press <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>Delete</kbd> to end the session.

Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.

output

GIFis a bitmap image format.

H2O

Xn+ Yn= Zn

Press CTRL+ ALT+ Deleteto end the session.

Most salamandersare nocturnal, and hunt for insects, worms, and other small creatures.


  1. 『吾輩は​猫である』​(わが​はいは​ねこである)は、​夏目漱石の​長編小説であり、​処女小説である。

Tags