WordPressに、Markdownプラグインを導入したので記法のメモ。
* 導入プラグイン: Markdown on Save Improved
見出し
h1
h2
h3
h4
h5
h6
リスト
- 1111
- 2222
- 3333
リンク
This is an example inline link.
This link has no title attribute.
文字装飾
single asterisks
single underscores
double asterisks
double underscores
<code>
Use the printf()
function.
引用
blockquotes
blockquotes
blockquotes
blockquotes
blockquotes
blockquotes
テーブル
名前 |
年齢 |
Fred |
29 |
Jim |
47 |
Harry |
32 |
おまけ
<br>
$ ls -la<br>
ソース(mkd)
#h1
##h2
###h3
####h4
#####h5
######h6
### リスト
* aa
* bb
* cc
1. 1111
2. 2222
3. 3333
### リンク
This is [an example](http://example.com/ "Title") inline link.
[This link](http://example.net/) has no title attribute.
### 文字装飾
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
### <code>
Use the `printf()` function.
### 引用
> blockquotes
> blockquotes
> > blockquotes
> > blockquotes
> blockquotes
> blockquotes
### テーブル
|名前 | 年齢|
|--------|------|
|Fred | 29|
|Jim | 47|
|Harry | 32|
### おまけ
$ ls -la
11月 29 2011
Markdown記法
WordPressに、Markdownプラグインを導入したので記法のメモ。
* 導入プラグイン: Markdown on Save Improved
見出し
h1
h2
h3
h4
h5
h6
リスト
リンク
This is an example inline link.
This link has no title attribute.
文字装飾
single asterisks
single underscores
double asterisks
double underscores
<code>
Use the
printf()
function.引用
テーブル
おまけ
ソース(mkd)
By KYO • HTML • • Tags: markdown