-
Notifications
You must be signed in to change notification settings - Fork 846
/
template.html
81 lines (76 loc) · 2.55 KB
/
template.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="zh-Hant" class="han-init">
<head>
<meta charset="UTF-8" />
<title>Markdown 語法說明</title>
<link
rel="stylesheet"
media="all"
href="//cdnjs.cloudflare.com/ajax/libs/Han/3.3.0/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 <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="//cdnjs.cloudflare.com/ajax/libs/Han/3.3.0/han.min.js"></script>
</body>
</html>