Markdown記法
2011年11月29日Table of Contents
WordPressに、Markdownプラグインを導入したので記法のメモ。
* 導入プラグイン: Markdown on Save Improved
見出し
h1
h2
h3
h4
h5
h6
リスト
- aa
- bb
- cc
- 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
blockquotesblockquotes
blockquotes
blockquotes
blockquotes
テーブル
名前 | 年齢 |
---|---|
Fred | 29 |
Jim | 47 |
Harry | 32 |
おまけ
[shell]<br> $ ls -la<br> [/shell]
ソース(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|
### おまけ
[shell]
$ ls -la
[/shell]