Compare commits

..

No commits in common. 'gh-pages' and 'gh-pages-ethan' have entirely different histories.

  1. 3
      .gitmodules
  2. 18
      Makefile
  3. 34
      content.html
  4. 1
      external-link-alt-solid.svg
  5. 42
      footer.html
  6. 20
      general_footer.html
  7. 23
      header.html
  8. 741
      index.html
  9. 1225
      js/han.js
  10. 6
      js/jquery-2.0.3.min.js
  11. 204
      resources.html
  12. 105
      resources.md
  13. 67
      resources_content.html
  14. 14
      stylesheets/main.css
  15. 10
      syntax.md
  16. 83
      template.html

3
.gitmodules vendored

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
[submodule "Han"]
path = Han
url = git://github.com/ethantw/Han.git

18
Makefile

@ -1,9 +1,17 @@ @@ -1,9 +1,17 @@
all: index.html resources.html
.PHONY: all
index.html: template.html syntax.md
cat template.html | perl -pe 's/\{\{\ *CONTENT\ *\}\}/`pandoc syntax.md`/ge' > index.html
index.html: header.html footer.html content.html
cat header.html content.html footer.html > index.html
resources.html: template.html resources.md
cat template.html | perl -pe 's/\{\{\ *CONTENT\ *\}\}/`pandoc resources.md`/ge' > resources.html
resources.html: header.html general_footer.html resources_content.html
cat header.html resources_content.html general_footer.html > resources.html
content.html: syntax.md
perl Markdown_1.0.1/Markdown.pl syntax.md > content.html
resources_content.html: resources.md
perl Markdown_1.0.1/Markdown.pl resources.md > resources_content.html
clean:
rm index.html resources.html content.html resources_content.html

34
content.html

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
<h1>Markdown文件</h1>
<p><img src="https://markdown.tw/images/208x128.png" alt="Markdown" title="" /></p>
<p><img src="http://markdown.tw/images/208x128.png" alt="Markdown" title="" /></p>
<p><strong>NOTE:</strong> This is Traditional Chinese Edition Document of
<p lang="en"><strong>NOTE:</strong> This is Traditional Chinese Edition Document of
Markdown Syntax. If you are seeking for English Edition
Document. Please refer to <a href="http://daringfireball.net/projects/markdown/syntax">Markdown: Syntax</a>.</p>
@ -57,11 +57,11 @@ Document. Please refer to <a href="http://daringfireball.net/projects/markdown/s @@ -57,11 +57,11 @@ Document. Please refer to <a href="http://daringfireball.net/projects/markdown/s
<p>Markdown的語法有個主要的目的:用來作為一種網路內容的<em>寫作</em>用語言。</p>
<p>Markdown不是要來取代HTML,甚至也沒有要和它相似,它的語法種類不多,只和HTML的一部分有關係,重點<em>不是</em>要創造一種更容易寫作HTML文件的語法,我認為HTML已經很容易寫了,Markdow的重點在於,它能讓文件更容易閱讀、編寫。HTML 是一種<em>發佈</em>的格式,Markdown是一種<em>編寫</em>的格式,因此,Markdown的格式語法只涵蓋純文字可以涵蓋的範圍。</p>
<p>Markdown不是要來取代HTML,甚至也沒有要和它相似,它的語法種類不多,只和HTML的一部分有關係,重點<em>不是</em>要創造一種更容易寫作 HTML文件的語法,我認為HTML已經很容易寫了,Markdown的重點在於,它能讓文件更容易閱讀、編寫。HTML是一種<em>發佈</em>的格式,Markdown是一種<em>編寫</em>的格式,因此,Markdown的格式語法只涵蓋純文字可以涵蓋的範圍。</p>
<p>不在Markdown涵蓋範圍之外的標籤,都可以直接在文件裡面用HTML撰寫。不需要額外標註這是HTML或是Markdown只要直接加標籤就可以了。</p>
<p>不在Markdown涵蓋範圍之外的標籤,都可以直接在文件裡面用HTML撰寫。不需要額外標註這是HTML或是Markdown——只要直接加標籤就可以了。</p>
<p>只有區塊元素──比如<code>&lt;div&gt;</code><code>&lt;table&gt;</code><code>&lt;pre&gt;</code><code>&lt;p&gt;</code>等標籤必需在前後加上空行,以利與內容區隔。而且這些元素的開始與結尾標籤,不可以用tab或是空白來縮排。Markdown的產生器有智慧型判斷,可以避免在區塊標籤前後加上沒有必要的<code>&lt;p&gt;</code>標籤。</p>
<p>只有區塊元素——比如<code>&lt;div&gt;</code><code>&lt;table&gt;</code><code>&lt;pre&gt;</code><code>&lt;p&gt;</code>等標籤——必需在前後加上空行,以利與內容區隔。而且這些元素的開始與結尾標籤,不可以用tab或是空白來縮排。Markdown的產生器有智慧型判斷,可以避免在區塊標籤前後加上沒有必要的<code>&lt;p&gt;</code>標籤。</p>
<p>舉例來說,在Markdown文件裡加上一段HTML表格:</p>
@ -84,9 +84,9 @@ This is another regular paragraph. @@ -84,9 +84,9 @@ This is another regular paragraph.
<h3 id="autoescape">特殊字元自動轉換</h3>
<p>在HTML文件中,有兩個字元需要特殊處理:<code>&lt;</code><code>&amp;</code><code>&lt;</code>符號用於起始標籤<code>&amp;</code>符號則用於標記HTML實體,如果你只是想要使用這些符號,你必須要使用實體的形式,像是<code>&amp;lt;</code><code>&amp;amp;</code></p>
<p>在HTML文件中,有兩個字元需要特殊處理:<code>&lt;</code><code>&amp;</code><code>&lt;</code>符號用於起始標籤<code>&amp;</code>符號則用於標記HTML實體,如果你只是想要使用這些符號,你必須要使用實體的形式,像是<code>&amp;lt;</code><code>&amp;amp;</code></p>
<p><code>&amp;</code> 符號其實很容易讓寫作網路文件的人感到困擾,如果你要打「AT&amp;T」 ,你必須要寫成「<code>AT&amp;amp;T</code> ,還得轉換網址內的 <code>&amp;</code> 符號,如果你要連結到:</p>
<p><code>&amp;</code>符號其實很讓寫作網路文件的人感到困擾,如果你要打「AT&amp;T」,你必須要寫成「<code>AT&amp;amp;T</code>」,還得轉換網址內的<code>&amp;</code>符號,如果你要連結到:</p>
<pre><code>http://images.google.com/images?num=30&amp;q=larry+bird
</code></pre>
@ -123,7 +123,7 @@ This is another regular paragraph. @@ -123,7 +123,7 @@ This is another regular paragraph.
<pre><code>4 &amp;lt; 5
</code></pre>
<p>不過需要注意的是,code範圍內,不論是行內還是區塊,<code>&lt;</code><code>&amp;</code>兩個符號都<em>一定</em>會被轉換成HTML實體,這項特性讓你可以很容易地用Markdown寫HTML code(和HTML相對而言。在HTML語法中,你要把所有的<code>&lt;</code><code>&amp;</code>都轉換為 HTML實體,才能在HTML文件裡面寫出HTML code。)</p>
<p>不過需要注意的是,code範圍內,不論是行內還是區塊,<code>&lt;</code><code>&amp;</code>兩個符號都<em>一定</em>會被轉換成HTML實體,這項特性讓你可以很容易地用Markdown寫HTML code(和HTML相對而言HTML語法中,你要把所有的<code>&lt;</code><code>&amp;</code>都轉換為HTML實體,才能在HTML文件裡面寫出HTML code。)</p>
<hr />
@ -154,7 +154,7 @@ This is an H2 @@ -154,7 +154,7 @@ This is an H2
<p>任何數量的<code>=</code><code>-</code>都可以有效果。</p>
<p>Atx形式則是在行首插入1到6個 <code>#</code> 對應到標題1到6階,例如:</p>
<p>Atx形式則是在行首插入1至6個<code>#</code>,對應到標題1到6階,例如:</p>
<pre><code># This is an H1
@ -172,7 +172,7 @@ This is an H2 @@ -172,7 +172,7 @@ This is an H2
### This is an H3 ######
</code></pre>
<h3 id="blockquote">區塊引言</h3>
<h3 id="blockquote">Blockquotes</h3>
<p>Markdown使用email形式的區塊引言,如果你很熟悉如何在email信件中引言,你就知道怎麼在Markdown文件中建立一個區塊引言,那會看起來像是你強迫斷行,然後在每行的最前面加上<code>&gt;</code></p>
@ -393,7 +393,7 @@ sit amet, consectetuer adipiscing elit. @@ -393,7 +393,7 @@ sit amet, consectetuer adipiscing elit.
&lt;/code&gt;&lt;/pre&gt;
</code></pre>
<p>這個每行一階的縮排(4個空白或是1個tab),都會被移除,例如:</p>
<p>這個每行一階的縮排(4個空白或是tab),都會被移除,例如:</p>
<pre><code>Here is an example of AppleScript:
@ -454,7 +454,7 @@ end tell @@ -454,7 +454,7 @@ end tell
<p>Markdown支援兩種形式的連結語法: <em>行內</em><em>參考</em>兩種形式。</p>
<p>不管是哪一種,連結的文字都是用 [方括號] 來標記。</p>
<p>不管是哪一種,連結的文字都是用<code>[方括號]</code>來標記。</p>
<p>要建立一個行內形式的連結,只要在方塊括號後面馬上接著括號並插入網址連結即可,如果你還想要加上連結的title文字,只要在網址後面,用雙引號把title文字包起來即可,例如:</p>
@ -511,7 +511,7 @@ title attribute.&lt;/p&gt; @@ -511,7 +511,7 @@ title attribute.&lt;/p&gt;
<p><strong>請注意:</strong>有一個已知的問題是Markdown.pl 1.0.1會忽略單引號包起來的連結title。</p>
<p>連結網址也可以用括號包起來:</p>
<p>連結網址也可以用括號包起來:</p>
<pre><code>[id]: &lt;http://example.com/&gt; "Optional Title Here"
</code></pre>
@ -530,7 +530,7 @@ title attribute.&lt;/p&gt; @@ -530,7 +530,7 @@ title attribute.&lt;/p&gt;
[link text][A]
</code></pre>
<p><em>預設的連結標籤</em>功能讓你可以省略指定連結標籤,這種情形下,連結標籤和連結文字會視為相同,要用預設連結標籤只要在連結文字後面加上一個空的方括號,如果你要讓"Google"連結到google.com,你可以簡化成:</p>
<p><em>預設的連結標籤</em>功能讓你可以省略指定連結標籤,這種情形下,連結標籤和連結文字會視為相同,要用預設連結標籤只要在連結文字後面加上一個空的方括號,如果你要讓「Google」連結到google.com,你可以簡化成:</p>
<pre><code>[Google][]
</code></pre>
@ -665,7 +665,7 @@ A backtick-delimited string in a code span: `` `foo` `` @@ -665,7 +665,7 @@ A backtick-delimited string in a code span: `` `foo` ``
&lt;p&gt;A backtick-delimited string in a code span: &lt;code&gt;`foo`&lt;/code&gt;&lt;/p&gt;
</code></pre>
<p>在程式碼區段內,<code>&amp;</code>括號都會被轉成HTML實體,這樣會比較容易插入HTML原始碼,Markdown會把下面這段:</p>
<p>在程式碼區段內,<code>&amp;</code>括號都會被轉成HTML實體,這樣會比較容易插入HTML原始碼,Markdown會把下面這段:</p>
<pre><code>Please don't use any `&lt;blink&gt;` tags.
</code></pre>
@ -726,7 +726,7 @@ equivalent of &lt;code&gt;&amp;amp;mdash;&lt;/code&gt;.&lt;/p&gt; @@ -726,7 +726,7 @@ equivalent of &lt;code&gt;&amp;amp;mdash;&lt;/code&gt;.&lt;/p&gt;
<h3 id="autolink">自動連結</h3>
<p>Markdown支援比較簡短的自動連結形式來處理網址和電子郵件信箱,只要是用括號包起來,Markdown就會自動把它轉成連結,連結的文字就和連結位置一樣,例如:</p>
<p>Markdown支援比較簡短的自動連結形式來處理網址和電子郵件信箱,只要是用括號包起來,Markdown就會自動把它轉成連結,連結的文字就和連結位置一樣,例如:</p>
<pre><code>&lt;http://example.com/&gt;
</code></pre>
@ -778,4 +778,4 @@ _ 底線 @@ -778,4 +778,4 @@ _ 底線
<h2 id="acknowledgement">感謝</h2>
<p>感謝<a href="https://twitter.com/#!/leafy7382">leafy7382</a>協助翻譯,<a href="http://iamhlb.com/">hlb</a><a href="http://twitter.com/randylien">Randylien</a>幫忙潤稿,<a href="https://twitter.com/#!/ethantw">ethantw</a><a href="http://css.hanzi.co/">漢字標準格式</a><a href="http://kidwm.net/">WM</a>回報文字錯誤。</p>
<p>感謝<a href="https://twitter.com/#!/leafy7382">leafy7382</a>協助翻譯,<a href="http://iamhlb.com/">hlb</a><a href="http://twitter.com/randylien">Randylien</a>幫忙潤稿,<a href="https://twitter.com/#!/ethantw">ethantw</a><a href="http://css.hanzi.co/">漢字標準格式</a>(Han.css)<a href="http://kidwm.net/">WM</a>回報文字錯誤。</p>

1
external-link-alt-solid.svg

@ -1 +0,0 @@ @@ -1 +0,0 @@
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="external-link-alt" class="svg-inline--fa fa-external-link-alt fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="#666" d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z"></path></svg>

Before

Width:  |  Height:  |  Size: 589 B

42
footer.html

@ -0,0 +1,42 @@ @@ -0,0 +1,42 @@
</div>
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'markdowntw'; // required: replace example with your forum shortname
// The following are highly recommended additional parameters. Remove the slashes in front to use.
// var disqus_identifier = 'unique_dynamic_id_1234';
// var disqus_url = 'http://example.com/permalink-to-page.html';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-21880461-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="js/han.js"></script>
</body>
</html>

20
general_footer.html

@ -0,0 +1,20 @@ @@ -0,0 +1,20 @@
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-21880461-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="js/han.js"></script>
</body>
</html>

23
header.html

@ -0,0 +1,23 @@ @@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="zh-TW" class="han-biaodian-pro-cns han-la">
<head>
<meta charset="UTF-8">
<title>Markdown 語法說明</title>
<link rel="stylesheet" media="all" href="stylesheets/han.css">
<link rel="stylesheet" media="all" href="stylesheets/main.css">
<meta property="og:title" content="Markdown 語法說明" />
<meta property="og:url" content="http://markdown.tw/" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Markdown 是很簡單的純文件格式,由於語法設計得好,近幾年廣泛應用在各種領域,包括 Github、Stack Overflow 等知名的網路服務都使用它,本網頁為該語法的中文說明" />
<meta property="og:image" content="http://markdown.tw/images/208x128.png" />
<meta property="og:image:width" content="208" />
<meta property="og:image:height" content="128" />
</head>
<body>
<nav>
<a href="/">文件</a>
<a href="/resources.html">資源</a>
<a href="https://github.com/othree/markdown-syntax-zhtw/issues">回報錯誤</a>
</nav>
<div class="wikistyle">

741
index.html

File diff suppressed because it is too large Load Diff

1225
js/han.js

File diff suppressed because it is too large Load Diff

6
js/jquery-2.0.3.min.js vendored

File diff suppressed because one or more lines are too long

204
resources.html

@ -1,91 +1,57 @@ @@ -1,91 +1,57 @@
<!DOCTYPE html>
<html lang="zh-TW" class="han-biaodian-pro-cns han-la">
<head>
<meta charset="UTF-8" />
<meta charset="UTF-8">
<title>Markdown 語法說明</title>
<link
rel="stylesheet"
media="all"
href="//cdnjs.cloudflare.com/ajax/libs/Han/3.2.2/han.min.css"
/>
<link rel="stylesheet" media="all" href="stylesheets/main.css" />
<link rel="stylesheet" media="all" href="stylesheets/han.css">
<link rel="stylesheet" media="all" href="stylesheets/main.css">
<meta property="og:title" content="Markdown 語法說明" />
<meta property="og:url" content="https://markdown.tw/" />
<meta property="og:url" content="http://markdown.tw/" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Markdown 是很簡單的純文件格式,由於語法設計得好,近幾年廣泛應用在各種領域,包括 Github、Stack Overflow 等知名的網路服務都使用它,本網頁為該語法的中文說明"
/>
<meta
property="og:image"
content="https://markdown.tw/images/208x128.png"
/>
<meta property="og:description" content="Markdown 是很簡單的純文件格式,由於語法設計得好,近幾年廣泛應用在各種領域,包括 Github、Stack Overflow 等知名的網路服務都使用它,本網頁為該語法的中文說明" />
<meta property="og:image" content="http://markdown.tw/images/208x128.png" />
<meta property="og:image:width" content="208" />
<meta property="og:image:height" content="128" />
</head>
<body
class="tk-source-han-sans-traditional"
style="font-family: -apple-system;"
>
<body>
<nav>
<a href="/">文件</a>
<a href="/resources.html">資源</a>
<a href="http://commonmark.org/"
>標準<img
src="external-link-alt-solid.svg"
width="12"
height="12"
alt=""
style="margin: 1px 0 -1px 3px;"
/></a>
<a href="https://github.com/othree/markdown-syntax-zhtw/issues"
>回報錯誤<img
src="external-link-alt-solid.svg"
width="12"
height="12"
alt=""
style="margin: 1px 0 -1px 3px;"
/></a>
<a href="https://github.com/othree/markdown-syntax-zhtw/issues">回報錯誤</a>
</nav>
<div class="wikistyle">
<h1 id="markdown-資源">Markdown 資源</h1>
<p><img src="https://markdown.tw/images/208x128.png" /></p>
<h2 id="spec">Spec</h2>
<ul>
<li><a href="http://commonmark.org/">CommonMark</a></li>
</ul>
<h2 id="logo">Logo</h2>
<h1>Markdown資源</h1>
<p><img src="http://markdown.tw/images/208x128.png" alt="Markdown" title="" /></p>
<h2>Logo</h2>
<ul>
<li><a href="http://dcurt.is/the-markdown-mark">The Markdown Mark</a></li>
</ul>
<h2 id="社群">社群</h2>
<ul>
<li><a href="https://www.facebook.com/groups/830853873715381/">Facebook Markdown 台灣 Group</a></li>
</ul>
<h2 id="編輯器">編輯器</h2>
<h3 id="寫作用編輯器">寫作用編輯器</h3>
<h2>編輯器</h2>
<h3>寫作用編輯器</h3>
<ul>
<li>OSX
<ul>
<li><a href="http://typora.io/">Typora</a></li>
<li><a href="http://macdown.uranusjr.com/">MacDown</a></li>
<li><a href="http://bywordapp.com/">Byword</a></li>
<li><a href="http://www.iawriter.com/mac/">iA Writer</a></li>
<li><a href="http://mouapp.com/">Mouapp</a></li>
<li><a href="http://www.texts.io/">TEXTS</a></li>
<li><a href="http://kobito.qiita.com/">Kobito</a></li>
</ul></li>
<li>Linux
<ul>
<li><a href="http://sourceforge.net/p/retext/home/ReText/">ReText</a></li>
<li><a href="http://uberwriter.wolfvollprecht.de/">UberWriter</a></li>
</ul></li>
<li>Windows
<ul>
<li><a href="http://markdownpad.com/">MarkdownPad</a></li>
<li><a href="http://www.texts.io/">TEXTS</a></li>
<li><a href="https://miu.0x142857.com">Miu</a></li>
</ul></li>
<li>iOS
<ul>
@ -93,19 +59,19 @@ @@ -93,19 +59,19 @@
<li><a href="http://www.iawriter.com/ipad/">iA Writer for iPad</a></li>
<li><a href="http://www.iawriter.com/iphone/">iA Writer for iPhone</a></li>
</ul></li>
<li>All
<ul>
<li><a href="https://yhatt.github.io/marp/">Marp</a>, Markdown to slide</li>
</ul></li>
</ul>
<h3 id="預覽">預覽</h3>
<h3>預覽</h3>
<ul>
<li>OSX
<ul>
<li><a href="https://itunes.apple.com/us/app/marked/id448925439">Marked</a></li>
</ul></li>
</ul>
<h3 id="通用文字編輯器">通用文字編輯器</h3>
<h3>通用文字編輯器</h3>
<ul>
<li><a href="http://www.sublimetext.com/">Sublime Text</a></li>
<li>Vim
@ -114,7 +80,9 @@ @@ -114,7 +80,9 @@
<li><a href="https://github.com/tpope/vim-markdown">tpope/vim-markdown</a></li>
</ul></li>
</ul>
<h3 id="網頁文字編輯器">網頁文字編輯器</h3>
<h3>網頁文字編輯器</h3>
<ul>
<li><a href="http://ace.ajax.org/">Ace</a></li>
<li><a href="http://codemirror.net/">CodeMirror</a></li>
@ -122,147 +90,101 @@ @@ -122,147 +90,101 @@
<li><a href="http://oscargodson.github.io/EpicEditor/">EpicEditor</a></li>
<li><a href="https://github.com/bianchimro/markgiu">Markgiu</a></li>
</ul>
<h3 id="瀏覽器-extension">瀏覽器 Extension</h3>
<ul>
<li><a href="https://github.com/adam-p/markdown-here/">Markdown Here</a></li>
</ul>
<h2 id="變形版-markdown">變形版 Markdown</h2>
<ul>
<li><a href="https://help.github.com/articles/github-flavored-markdown">GitHub Flavored Markdown</a>
<h2>擴充版Markdown</h2>
<ul>
<li><a href="https://github.github.com/gfm/">Spec</a></li>
<li><a href="https://github.com/github/cmark-gfm">Source</a></li>
</ul></li>
<li><a href="https://gitlab.com/help/user/markdown">GitLab Flavored Markdown</a></li>
<li><a href="https://help.github.com/articles/github-flavored-markdown">GitHub Flavored Markdown</a></li>
<li><a href="http://kramdown.rubyforge.org/quickref.html#headers">kramdown</a></li>
<li><a href="http://fletcherpenney.net/multimarkdown/">MultiMarkdown</a></li>
<li><a href="http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown">Pandocs markdown</a>
<li><a href="http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown">Pandoc's markdown</a>
<ul>
<li><a href="http://pages.tzengyuxio.me/pandoc/">Pandoc’s Markdown 語法中文翻譯</a> </li>
</ul></li>
<li><a href="http://michelf.ca/projects/php-markdown/extra/">PHP Markdown Extra</a></li>
<li><a href="https://rmarkdown.rstudio.com/">R Markdown</a></li>
<li><a href="http://markua.com/">Maruka</a></li>
<li><a href="https://apiblueprint.org/">API Blueprint</a></li>
<li><a href="https://apiblueprint.org/documentation/mson/tutorial.html">MSON</a></li>
<li><a href="https://www.reddit.com/wiki/markdown">Reddit-flavored Markdown</a>
<ul>
<li><a href="https://github.com/zeantsoi/snoomark-binding">Binding</a></li>
</ul></li>
</ul>
<h2 id="引擎">引擎</h2>
<h2>引擎</h2>
<ul>
<li>C
<ul>
<li><a href="https://github.com/jgm/cmark">cmark</a></li>
<li><a href="https://github.com/github/cmark-gfm">cmark-gfm</a></li>
<li><a href="https://github.com/vmg/sundown">Sundown</a> </li>
</ul></li>
<li>JavaScript
<ul>
<li><a href="https://github.com/jgm/commonmark.js">commonmark.js</a></li>
<li><a href="https://github.com/cky/wmd">showdown</a>, not maintained any more</li>
<li><a href="https://github.com/StackExchange/pagedown">pagedown</a>, StackOverflow</li>
<li><a href="https://code.google.com/p/pagedown/">pagedown</a>, StackOverflow</li>
<li><a href="https://github.com/coreyti/showdown">coreyti/showdown</a></li>
<li><a href="https://github.com/chjj/marked">marked</a></li>
<li><a href="https://jonschlinkert.github.io/remarkable/demo/">Remarkable</a></li>
</ul></li>
<li>PHP
<ul>
<li><a href="http://michelf.ca/projects/php-markdown/">PHP Markdown</a></li>
</ul></li>
<li>Python
<ul>
<li><a href="https://pypi.python.org/pypi/CommonMark">CommonMark</a></li>
</ul></li>
<li>Ruby
<ul>
<li><a href="https://github.com/vmg/redcarpet">Redcarpet</a> </li>
<li><a href="https://github.com/bhollis/maruku">Maruku</a></li>
</ul></li>
<li>Rust
<ul>
<li><a href="https://github.com/kivikakk/comrak">comark</a></li>
<li><a href="https://github.com/raphlinus/pulldown-cmark">pulldown-cmark</a></li>
</ul></li>
</ul>
<h2 id="反向引擎">反向引擎</h2>
<ul>
<li><a href="https://leeoniya.github.io/reMarked.js/">reMarked.js</a></li>
</ul>
<h2 id="其它用途引擎">其它用途引擎</h2>
<ul>
<li><a href="https://anydown.github.io/maildown/">maildown</a>, 轉為日本常用商業郵件格式</li>
<li><a href="https://conv.denshochan.com/tw/markdown">電電 Markdown</a>,擴充語法,轉為電子書,非開源</li>
<li><a href="https://github.com/mdx-js/mdx">mdx</a> Markdown in JSX</li>
<li><a href="https://github.com/jxnblk/mdx-deck">mdx-deck</a> MDX-based presentation decks</li>
<li><a href="https://github.com/jamesknelson/mdxc">mdxc</a> Convert markdown to React Component</li>
</ul>
<h2 id="blog-服務">Blog 服務</h2>
<h2>Blog服務</h2>
<ul>
<li><a href="http://wordpress.com/">WordPress.com</a></li>
<li><a href="http://logdown.com/">logdown</a></li>
</ul>
<h2 id="blog-系統">Blog 系統</h2>
<h2>Blog 系統</h2>
<ul>
<li><a href="http://wordpress.org/">WordPress</a></li>
<li><a href="http://www.movabletype.org/">MOVABLETYPE</a></li>
</ul>
<h2 id="其它服務">其它服務</h2>
<ul>
<li><a href="https://hackmd.io/">HackMD</a></li>
</ul>
<h2 id="css">CSS</h2>
<h2>CSS</h2>
<ul>
<li><a href="http://jasonm23.github.io/markdown-css-themes/">Markdown css themes</a></li>
<li><a href="http://mrcoles.com/demo/markdown-css/">Markdown.css</a></li>
</ul>
<h2 id="其他工具">其他工具</h2>
<h2>其他工具</h2>
<ul>
<li><a href="http://www.stack.nl/~dimitri/doxygen/manual/markdown.html">Doxygen</a></li>
</ul>
<h2 id="標準">標準</h2>
<h2>標準</h2>
<ul>
<li><a href="http://daringfireball.net/projects/markdown/">Markdown</a></li>
<li><a href="http://www.codinghorror.com/blog/2012/10/the-future-of-markdown.html">The Future of Markdown</a></li>
<li><a href="http://www.w3.org/community/markdown/">W3C Markdown Community Group</a></li>
<li><a href="http://www.w3.org/community/markdown/wiki/Main_Page">W3C Markdown Community Group wiki</a></li>
</ul>
<h2 id="文章">文章</h2>
<ul>
<li><a href="https://blog.codinghorror.com/standard-flavored-markdown/">Standard Flavored Markdown</a> - 標準化緣起</li>
</ul>
<h2 id="感謝">感謝</h2>
<h2>感謝</h2>
<p>感謝<a href="http://kidwm.net/">WM</a>協助整理</p>
</div>
<footer>Made with &lt;3 by <a href="https://othree.net">othree</a>.</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-21880461-1"]);
_gaq.push(["_trackPageview"]);
_gaq.push(['_setAccount', 'UA-21880461-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement("script");
ga.type = "text/javascript";
ga.async = true;
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(ga, s);
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="https://use.typekit.net/gib3xul.js"></script>
<script>
try {
Typekit.load();
} catch (e) {}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Han/3.2.2/han.min.js"></script>
<script src="/js/jquery-2.0.3.min.js"></script>
<script src="js/han.js"></script>
</body>
</html>

105
resources.md

@ -1,158 +1,101 @@ @@ -1,158 +1,101 @@
# Markdown 資源
Markdown 資源
==================
![Markdown](http://markdown.tw/images/208x128.png)
![](https://markdown.tw/images/208x128.png)
## Spec
* [CommonMark](http://commonmark.org/)
## Logo
Logo
----
* [The Markdown Mark](http://dcurt.is/the-markdown-mark)
## 社群
* [Facebook Markdown 台灣 Group](https://www.facebook.com/groups/830853873715381/)
## 編輯器
編輯器
-----
### 寫作用編輯器
* OSX
* [Typora](http://typora.io/)
* [MacDown](http://macdown.uranusjr.com/)
* [Byword](http://bywordapp.com/)
* [iA Writer](http://www.iawriter.com/mac/)
* [Mouapp](http://mouapp.com/)
* [TEXTS](http://www.texts.io/)
* [Kobito](http://kobito.qiita.com/)
* Linux
* [ReText](http://sourceforge.net/p/retext/home/ReText/)
* [UberWriter](http://uberwriter.wolfvollprecht.de/)
* Windows
* [MarkdownPad](http://markdownpad.com/)
* [TEXTS](http://www.texts.io/)
* [Miu](https://miu.0x142857.com)
* iOS
* [Byword](http://bywordapp.com/)
* [iA Writer for iPad](http://www.iawriter.com/ipad/)
* [iA Writer for iPhone](http://www.iawriter.com/iphone/)
* All
* [Marp](https://yhatt.github.io/marp/), Markdown to slide
### 預覽
* OSX
* [Marked](https://itunes.apple.com/us/app/marked/id448925439)
### 通用文字編輯器
* [Sublime Text](http://www.sublimetext.com/)
* Vim
* [plasticboy/vim-markdown](https://github.com/plasticboy/vim-markdown)
* [tpope/vim-markdown](https://github.com/tpope/vim-markdown)
### 網頁文字編輯器
* [Ace](http://ace.ajax.org/)
* [CodeMirror](http://codemirror.net/)
* [Dillinger](http://dillinger.io/)
* [EpicEditor](http://oscargodson.github.io/EpicEditor/)
* [Markgiu](https://github.com/bianchimro/markgiu)
### 瀏覽器 Extension
* [Markdown Here](https://github.com/adam-p/markdown-here/)
## 變形版 Markdown
擴充版 Markdown
--------------
* [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown)
* [Spec](https://github.github.com/gfm/)
* [Source](https://github.com/github/cmark-gfm)
* [GitLab Flavored Markdown](https://gitlab.com/help/user/markdown)
* [kramdown](http://kramdown.rubyforge.org/quickref.html#headers)
* [MultiMarkdown](http://fletcherpenney.net/multimarkdown/)
* [Pandoc's markdown](http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown)
* [Pandoc’s Markdown 語法中文翻譯](http://pages.tzengyuxio.me/pandoc/)
* [PHP Markdown Extra](http://michelf.ca/projects/php-markdown/extra/)
* [R Markdown](https://rmarkdown.rstudio.com/)
* [Maruka](http://markua.com/)
* [API Blueprint](https://apiblueprint.org/)
* [MSON](https://apiblueprint.org/documentation/mson/tutorial.html)
* [Reddit-flavored Markdown](https://www.reddit.com/wiki/markdown)
* [Binding](https://github.com/zeantsoi/snoomark-binding)
## 引擎
引擎
----
* C
* [cmark](https://github.com/jgm/cmark)
* [cmark-gfm](https://github.com/github/cmark-gfm)
* [Sundown](https://github.com/vmg/sundown)
* JavaScript
* [commonmark.js](https://github.com/jgm/commonmark.js)
* [showdown](https://github.com/cky/wmd), not maintained any more
* [pagedown](https://github.com/StackExchange/pagedown), StackOverflow
* [pagedown](https://code.google.com/p/pagedown/), StackOverflow
* [coreyti/showdown](https://github.com/coreyti/showdown)
* [marked](https://github.com/chjj/marked)
* [Remarkable](https://jonschlinkert.github.io/remarkable/demo/)
* PHP
* [PHP Markdown](http://michelf.ca/projects/php-markdown/)
* Python
* [CommonMark](https://pypi.python.org/pypi/CommonMark)
* Ruby
* [Redcarpet](https://github.com/vmg/redcarpet)
* [Maruku](https://github.com/bhollis/maruku)
* Rust
* [comark](https://github.com/kivikakk/comrak)
* [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark)
## 反向引擎
* [reMarked.js](https://leeoniya.github.io/reMarked.js/)
## 其它用途引擎
* [maildown](https://anydown.github.io/maildown/), 轉為日本常用商業郵件格式
* [電電 Markdown](https://conv.denshochan.com/tw/markdown),擴充語法,轉為電子書,非開源
* [mdx](https://github.com/mdx-js/mdx) Markdown in JSX
* [mdx-deck](https://github.com/jxnblk/mdx-deck) MDX-based presentation decks
* [mdxc](https://github.com/jamesknelson/mdxc) Convert markdown to React Component
## Blog 服務
Blog 服務
---------
* [WordPress.com](http://wordpress.com/)
* [logdown](http://logdown.com/)
## Blog 系統
Blog 系統
---------
* [WordPress](http://wordpress.org/)
* [MOVABLETYPE](http://www.movabletype.org/)
## 其它服務
* [HackMD](https://hackmd.io/)
## CSS
CSS
---
* [Markdown css themes](http://jasonm23.github.io/markdown-css-themes/)
* [Markdown.css](http://mrcoles.com/demo/markdown-css/)
## 其他工具
其他工具
--------
* [Doxygen](http://www.stack.nl/~dimitri/doxygen/manual/markdown.html)
## 標準
標準
----
* [Markdown](http://daringfireball.net/projects/markdown/)
* [The Future of Markdown](http://www.codinghorror.com/blog/2012/10/the-future-of-markdown.html)
* [W3C Markdown Community Group](http://www.w3.org/community/markdown/)
* [W3C Markdown Community Group wiki](http://www.w3.org/community/markdown/wiki/Main_Page)
## 文章
* [Standard Flavored Markdown](https://blog.codinghorror.com/standard-flavored-markdown/) - 標準化緣起
## 感謝
感謝
----
感謝 [WM](http://kidwm.net/) 協助整理

67
resources_content.html

@ -1,12 +1,6 @@ @@ -1,12 +1,6 @@
<h1>Markdown資源</h1>
<p><img src="https://markdown.tw/images/208x128.png" alt="Markdown" title="" /></p>
<h2>Spec</h2>
<ul>
<li><a href="http://commonmark.org/">CommonMark</a></li>
</ul>
<p><img src="http://markdown.tw/images/208x128.png" alt="Markdown" title="" /></p>
<h2>Logo</h2>
@ -14,12 +8,6 @@ @@ -14,12 +8,6 @@
<li><a href="http://dcurt.is/the-markdown-mark">The Markdown Mark</a></li>
</ul>
<h2>社群</h2>
<ul>
<li><a href="https://www.facebook.com/groups/830853873715381/">Facebook Markdown 台灣 Group</a></li>
</ul>
<h2>編輯器</h2>
<h3>寫作用編輯器</h3>
@ -27,24 +15,19 @@ @@ -27,24 +15,19 @@
<ul>
<li>OSX
<ul>
<li><a href="http://typora.io/">Typora</a></li>
<li><a href="http://macdown.uranusjr.com/">MacDown</a></li>
<li><a href="http://bywordapp.com/">Byword</a></li>
<li><a href="http://www.iawriter.com/mac/">iA Writer</a></li>
<li><a href="http://mouapp.com/">Mouapp</a></li>
<li><a href="http://www.texts.io/">TEXTS</a></li>
<li><a href="http://kobito.qiita.com/">Kobito</a></li>
</ul></li>
<li>Linux
<ul>
<li><a href="http://sourceforge.net/p/retext/home/ReText/">ReText</a></li>
<li><a href="http://uberwriter.wolfvollprecht.de/">UberWriter</a></li>
</ul></li>
<li>Windows
<ul>
<li><a href="http://markdownpad.com/">MarkdownPad</a></li>
<li><a href="http://www.texts.io/">TEXTS</a></li>
<li><a href="https://miu.0x142857.com">Miu</a></li>
</ul></li>
<li>iOS
<ul>
@ -52,10 +35,6 @@ @@ -52,10 +35,6 @@
<li><a href="http://www.iawriter.com/ipad/">iA Writer for iPad</a></li>
<li><a href="http://www.iawriter.com/iphone/">iA Writer for iPhone</a></li>
</ul></li>
<li>All
<ul>
<li><a href="https://yhatt.github.io/marp/">Marp</a>, Markdown to slide</li>
</ul></li>
</ul>
<h3>預覽</h3>
@ -88,19 +67,10 @@ @@ -88,19 +67,10 @@
<li><a href="https://github.com/bianchimro/markgiu">Markgiu</a></li>
</ul>
<h3>瀏覽器 Extension</h3>
<ul>
<li><a href="https://github.com/adam-p/markdown-here/">Markdown Here</a></li>
</ul>
<h2>擴充版Markdown</h2>
<ul>
<li><a href="https://help.github.com/articles/github-flavored-markdown">GitHub Flavored Markdown</a>
<ul>
<li><a href="https://github.github.com/gfm/">Spec</a></li>
</ul></li>
<li><a href="https://help.github.com/articles/github-flavored-markdown">GitHub Flavored Markdown</a></li>
<li><a href="http://kramdown.rubyforge.org/quickref.html#headers">kramdown</a></li>
<li><a href="http://fletcherpenney.net/multimarkdown/">MultiMarkdown</a></li>
<li><a href="http://johnmacfarlane.net/pandoc/README.html#pandocs-markdown">Pandoc's markdown</a>
@ -108,8 +78,6 @@ @@ -108,8 +78,6 @@
<li><a href="http://pages.tzengyuxio.me/pandoc/">Pandoc’s Markdown 語法中文翻譯</a> </li>
</ul></li>
<li><a href="http://michelf.ca/projects/php-markdown/extra/">PHP Markdown Extra</a></li>
<li><a href="https://rmarkdown.rstudio.com/">R Markdown</a></li>
<li><a href="http://markua.com/">Maruka</a></li>
</ul>
<h2>引擎</h2>
@ -117,26 +85,19 @@ @@ -117,26 +85,19 @@
<ul>
<li>C
<ul>
<li><a href="https://github.com/jgm/cmark">cmark</a></li>
<li><a href="https://github.com/vmg/sundown">Sundown</a> </li>
</ul></li>
<li>JavaScript
<ul>
<li><a href="https://github.com/jgm/commonmark.js">commonmark.js</a></li>
<li><a href="https://github.com/cky/wmd">showdown</a>, not maintained any more</li>
<li><a href="https://github.com/StackExchange/pagedown">pagedown</a>, StackOverflow</li>
<li><a href="https://code.google.com/p/pagedown/">pagedown</a>, StackOverflow</li>
<li><a href="https://github.com/coreyti/showdown">coreyti/showdown</a></li>
<li><a href="https://github.com/chjj/marked">marked</a></li>
<li><a href="https://jonschlinkert.github.io/remarkable/demo/">Remarkable</a></li>
</ul></li>
<li>PHP
<ul>
<li><a href="http://michelf.ca/projects/php-markdown/">PHP Markdown</a></li>
</ul></li>
<li>Python
<ul>
<li><a href="https://pypi.python.org/pypi/CommonMark">CommonMark</a></li>
</ul></li>
<li>Ruby
<ul>
<li><a href="https://github.com/vmg/redcarpet">Redcarpet</a> </li>
@ -144,22 +105,6 @@ @@ -144,22 +105,6 @@
</ul></li>
</ul>
<h2>反向引擎</h2>
<ul>
<li><a href="https://leeoniya.github.io/reMarked.js/">reMarked.js</a></li>
</ul>
<h2>其它用途引擎</h2>
<ul>
<li><a href="https://anydown.github.io/maildown/">maildown</a>, 轉為日本常用商業郵件格式</li>
<li><a href="https://conv.denshochan.com/tw/markdown">電電 Markdown</a>,擴充語法,轉為電子書,非開源</li>
<li><a href="https://github.com/mdx-js/mdx">mdx</a> Markdown in JSX</li>
<li><a href="https://github.com/jxnblk/mdx-deck">mdx-deck</a> MDX-based presentation decks</li>
<li><a href="https://github.com/jamesknelson/mdxc">mdxc</a> Convert markdown to React Component</li>
</ul>
<h2>Blog服務</h2>
<ul>
@ -174,12 +119,6 @@ @@ -174,12 +119,6 @@
<li><a href="http://www.movabletype.org/">MOVABLETYPE</a></li>
</ul>
<h2>其它服務</h2>
<ul>
<li><a href="https://hackmd.io/">HackMD</a></li>
</ul>
<h2>CSS</h2>
<ul>

14
stylesheets/main.css

@ -4,19 +4,7 @@ html.han-biaodian-pro-cns { @@ -4,19 +4,7 @@ html.han-biaodian-pro-cns {
}
body {
margin: 0;
padding: 0 1em;
}
footer {
margin: 64px auto 0;
border-radius: 4px 4px 0 0;
border: 1px solid #e9e9e9;
max-width: 760px;
padding: 6px 10px;
font-size: 12px;
color: #666;
background: #f8f8f8;
padding: 0 1em 1em;
}
div.wikistyle ul li,

10
syntax.md

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
Markdown文件
==================
![](https://markdown.tw/images/208x128.png)
![Markdown](http://markdown.tw/images/208x128.png)
**NOTE:** This is Traditional Chinese Edition Document of
Markdown Syntax. If you are seeking for English Edition
@ -88,7 +88,7 @@ HTML區段標籤和區塊標籤不同,在區段標籤的範圍內,Markdown @@ -88,7 +88,7 @@ HTML區段標籤和區塊標籤不同,在區段標籤的範圍內,Markdown
在HTML文件中,有兩個字元需要特殊處理:`<`和`&`。`<`符號用於起始標籤`&`符號則用於標記HTML實體,如果你只是想要使用這些符號,你必須要使用實體的形式,像是`&lt;`和`&amp;`。
`&` 符號其實很容易讓寫作網路文件的人感到困擾,如果你要打「AT&T」 ,你必須要寫成「`AT&amp;T`」 ,還得轉換網址內的 `&` 符號,如果你要連結到:
`&`符號其實很讓寫作網路文件的人感到困擾,如果你要打「AT&T」,你必須要寫成「`AT&amp;T`」,還得轉換網址內的`&`符號,如果你要連結到:
http://images.google.com/images?num=30&q=larry+bird
@ -469,7 +469,7 @@ Markdown支援兩種形式的連結語法:*行內*和*參考*兩種形式。 @@ -469,7 +469,7 @@ Markdown支援兩種形式的連結語法:*行內*和*參考*兩種形式。
**請注意:**有一個已知的問題是Markdown.pl 1.0.1會忽略單引號包起來的連結title。
連結網址也可以用括號包起來:
連結網址也可以用括號包起來:
[id]: <http://example.com/> "Optional Title Here"
@ -602,7 +602,7 @@ Markdown使用星號(`*`)和底線(`_`)作為標記強調字詞的符號 @@ -602,7 +602,7 @@ Markdown使用星號(`*`)和底線(`_`)作為標記強調字詞的符號
<p>A backtick-delimited string in a code span: <code>`foo`</code></p>
在程式碼區段內,`&`和括號都會被轉成HTML實體,這樣會比較容易插入HTML原始碼,Markdown會把下面這段:
在程式碼區段內,`&`和括號都會被轉成HTML實體,這樣會比較容易插入HTML原始碼,Markdown會把下面這段:
Please don't use any `<blink>` tags.
@ -656,7 +656,7 @@ Markdown使用一種和連結很相似的語法來標記圖片,同樣也允許 @@ -656,7 +656,7 @@ Markdown使用一種和連結很相似的語法來標記圖片,同樣也允許
<h3 id="autolink">自動連結</h3>
Markdown支援比較簡短的自動連結形式來處理網址和電子郵件信箱,只要是用括號包起來,Markdown就會自動把它轉成連結,連結的文字就和連結位置一樣,例如:
Markdown支援比較簡短的自動連結形式來處理網址和電子郵件信箱,只要是用括號包起來,Markdown就會自動把它轉成連結,連結的文字就和連結位置一樣,例如:
<http://example.com/>

83
template.html

@ -1,83 +0,0 @@ @@ -1,83 +0,0 @@
<!DOCTYPE html>
<html lang="zh-TW" class="han-biaodian-pro-cns han-la">
<head>
<meta charset="UTF-8" />
<title>Markdown 語法說明</title>
<link
rel="stylesheet"
media="all"
href="//cdnjs.cloudflare.com/ajax/libs/Han/3.2.2/han.min.css"
/>
<link rel="stylesheet" media="all" href="stylesheets/main.css" />
<meta property="og:title" content="Markdown 語法說明" />
<meta property="og:url" content="https://markdown.tw/" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Markdown 是很簡單的純文件格式,由於語法設計得好,近幾年廣泛應用在各種領域,包括 Github、Stack Overflow 等知名的網路服務都使用它,本網頁為該語法的中文說明"
/>
<meta
property="og:image"
content="https://markdown.tw/images/208x128.png"
/>
<meta property="og:image:width" content="208" />
<meta property="og:image:height" content="128" />
</head>
<body
class="tk-source-han-sans-traditional"
style="font-family: -apple-system;"
>
<nav>
<a href="/">文件</a>
<a href="/resources.html">資源</a>
<a href="http://commonmark.org/"
>標準<img
src="external-link-alt-solid.svg"
width="12"
height="12"
alt=""
style="margin: 1px 0 -1px 3px;"
/></a>
<a href="https://github.com/othree/markdown-syntax-zhtw/issues"
>回報錯誤<img
src="external-link-alt-solid.svg"
width="12"
height="12"
alt=""
style="margin: 1px 0 -1px 3px;"
/></a>
</nav>
<div class="wikistyle">
{{ CONTENT }}
</div>
<footer>Made with &lt;3 by <a href="https://othree.net">othree</a>.</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-21880461-1"]);
_gaq.push(["_trackPageview"]);
(function () {
var ga = document.createElement("script");
ga.type = "text/javascript";
ga.async = true;
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="https://use.typekit.net/gib3xul.js"></script>
<script>
try {
Typekit.load();
} catch (e) {}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Han/3.2.2/han.min.js"></script>
</body>
</html>
Loading…
Cancel
Save