マークダウン早見表

最終更新日: 2010年3月 7日 (日曜日) 05:41:21 PM

ことをより快適にする為に Markdown を導入してみた。CotEditorでMarkdown を拝読して、これなら出来ると痛く感動しての行動ではあったのだが、呆気なく導入できたものの、肝心なマークダウン記法なるものが分からず暫し途方に暮れてみた。今時の若人はこの程度の記法なぞ歯牙にも掛けないのだろうが、敢えて老害を垂れ流す覚悟で、マークダウン早見表を作成した。或は本家のマニュアルをテーブル化しただけとも言う。(作成日: 2006年8月13日 (日曜日) 01:11:06 AM)

続きを読む

Markdown Chart

タグ記述例出力例
<h1>#Heading1<h1>Heading1</h1>
Heading1
=
<h2>##Heading2<h2>Heading2</h2>
Heading2
-
<h3>###Heading3<h3>Heading3</h3>
<h4>####Heading4<h4>Heading4</h4>
<h5>#####Heading5<h5>Heading5</h5>
<h6>######Heading6<h6>Heading6</h6>
<p>Paragraph<p>Paragraph</p>
<blockquote>>Long quotations in block
<blockquote>
  <p>Long quotations in block</p>
</blockquote>
<em>*Emphasis*<p><em>Emphasis</em></p>
_Emphasis_
<strong>**Strong emphasis**<p><strong>Strong emphasis</strong></p>
__Strong emphasis__
<ul>
<li>
* Unordered list
* List item
<ul>
<li>Unordered list</li>
<li>List item</li>
</ul>
+ Unordered list
+ List item
- Unordered list
- List item
<ol>
<li>
1. Order list
2. List item
<ol>
<li>Order list</li>
<li>List item</li>
</ol>
<a>[Anchor](http://www.w3.org/ "Anchor title")<p><a href="http://www.w3.org/" title="Anchor title">Anchor</a></p>
[W3C][1]&[Wikipedia][2]
[1]:http://www.w3.org/ "W3C"
[2]:http://en.wikipedia.org/ "Wikipedia"
<p><a href="http://www.w3.org/" title="W3C">W3C</a>&<a href="http://en.wikipedia.org/" title="Wikipedia">Wikipedia</a></p>
[Creative Commons][CC]
[CC]:http://creativecommons.org/
<p><a href="http://creativecommons.org/">Creative Commons</a></p>
<http://opensource.org/><p><a href="http://opensource.org/">http://opensource.org/</a></p>
<john.smith@example.com><p><a href="mailto:john.smith@example.com">john.smith@example.com</a></p>
<img>![Alt](image/logo.jpg "Title")<p><img src="image/logo.jpg" alt="Alt" title="Title" /></p>
![Alt][Path]
[Path]:image/logo.jpg "Title"
<code>`Computer code`<p><code>Computer code</code></p>
<pre>
<code>
    Preformatted text & Computer code
<pre><code>Preformatted text & Computer code
</code></pre>
<hr>---<hr />
***

参考

Markdown: Basics


Google Readerへ追加