Hexo その4 - Markdown の実験

公式によると GiHub Flavored Markdown をサポートしているらしい。
どこまで対応しているのかとか実験してみた。

Hexo より。

Markdown Support
All features of GitHub Flavored Markdown are supported. You can even use most Octopress plugins in Hexo.

いろいろ書いてみた結果は以下のとおり。

気になったのは __ を使用した修飾が使えてしまうのと、- [ ] xxx で ToDo にならないところくらいかと。
dl, dt, dd は正直諦めてるし。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
H1
=============
H2
-------------
# H1
## H2
### H3
#### H4
##### H5
###### H6
*Emphasis* or _emphasis_
**Strong emphasis** or __Strong emphasis__.
***Emphasis and Strong emphasis***
~~Strikethrough~~
1. ol
1. ol
1. ol
1. ol
* ul
* ul
- ul
- ul
+ ul
+ ul
- [ ] Task
- [x] Comprelte Task
Code like `this` or ``this``.
dt
: dd
dt
: dd
(python, tumblr)
Image
![alt text](https://avatars1.githubusercontent.com/u/2425442?v=3&s=40)
Table
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
> Blockquotes
> > Blockquotes
> > > Blockquotes

H1

H2

H1

H2

H3

H4

H5
H6

Emphasis or emphasis
Strong emphasis or Strong emphasis.
Emphasis and Strong emphasis
Strikethrough

  1. ol
  2. ol
    1. ol
      1. ol
  • ul
    • ul
  • ul
    • ul
  • ul
    • ul
  • [ ] Task
  • [x] Comprelte Task

dt
: dd
dt
: dd
(python, tumblr)

Image
alt text

Table

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

Blockquotes

Blockquotes

Blockquotes