-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
executable file
·160 lines (148 loc) · 4.29 KB
/
index.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Markdown Guide</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/markdown-reference.css" />
<script type="text/javascript" src="javascripts/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="javascripts/guide.js"></script>
</head>
<body>
<h1 id="title">Markdown Guide</h1>
<h2 class="section-name">Text</h2>
<div class="section">
<table>
<tr>
<th>Markdown</th>
<th>Result</th>
</tr>
<tr>
<td>This text is **bold**.</td>
<td>This text is <strong>bold</strong>.</td>
</tr>
<tr class="alternate">
<td>This text is *italicized*.</td>
<td>This text is <em>italicized</em>.</td>
</tr>
<tr>
<td>`This is some code.`</td>
<td><code>This is some code.</code></td>
</tr>
</table>
</div>
<h2 class="section-name">Headings</h2>
<div class="section">
<table>
<tr>
<th>Markdown</th>
<th>Result</th>
</tr>
<tr>
<td># First Header</td>
<td><h1>First Header</h1></td>
</tr>
<tr class="alternate">
<td>## Second Header</td>
<td><h2>Second Header</h2></td>
</tr>
<tr>
<td>### Third Header</td>
<td><h3>Third Header</h3></td>
</tr>
</table>
</div>
<h2 class="section-name">Quotes</h2>
<div class="section">
<table>
<tr class="alternate">
<td>
> This is the first level of quoting.<br />
>> This is nested blockquote.<br />
> Back to the first level.
</td>
<td>
<blockquote>
This is the first level of quoting.
<blockquote>
This is nested blockquote.
</blockquote>
Back to the first level.
</blockquote>
</td>
</tr>
</table>
</div>
<h2 class="section-name">Links and Images</h2>
<div class="section">
<table>
<tr>
<td>Link to [Google](http://google.com).</td>
<td>Link to <a href="http://google.com" target="_blank">Google</a>.</td>
</tr>
<tr>
<td>Send me an email at <address@example.com>.</td>
<td>Send me an email at <a href="mailto:address@example.com">address@example.com</a>.</td>
</tr>
<tr>
<td>![37signals logo](http://www.37signals.com/images/logo-37signals.png)</td>
<td><img src="http://www.37signals.com/images/logo-37signals.png" alt="37signals logo" /></td>
</tr>
</table>
</div>
<h2 class="section-name">Lists</h2>
<div class="section">
<table>
<tr>
<th>Markdown</th>
<th>Result</th>
</tr>
<tr>
<td>
* Milk<br />
* Bread<br />
* Cheese<br />
* Cheddar<br />
* Camembert<br />
* Rice
</td>
<td>
<ul>
<li>Milk</li>
<li>Bread</li>
<li>Cheese
<ul>
<li>Cheddar</li>
<li>Camembert</li>
</ul>
</li>
<li>Rice</li>
</ul>
</td>
</tr>
<tr class="alternate">
<td>
1. Milk<br />
2. Bread<br />
3. Cheese<br />
1. Cheddar<br />
2. Camembert<br />
4. Rice
</td>
<td>
<ol>
<li>Milk</li>
<li>Bread</li>
<li>Cheese
<ol>
<li>Cheddar</li>
<li>Camembert</li>
</ol>
</li>
<li>Rice</li>
</ol>
</td>
</tr>
</table>
</div>
</body>
</html>