-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathDOMarkdown-example.html
98 lines (68 loc) · 1.53 KB
/
DOMarkdown-example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Day One Markdown Example</title>
<link rel="stylesheet" href="DOMarkdown-example.css" />
</head>
<body>
<h1>Day One Markdown Syntax</h1>
<h3>Basics</h3>
<p><em>italic</em> or <em>italic</em> / <strong>bold</strong> or <strong>bold</strong></p>
<p>An inline link: <a href="http://dayoneapp.com/markdown">example</a>.<br/>
An id link <a href="http://dayoneapp.com/markdown">example</a>.<br/>
An auto-linked URL: <a href="http://dayoneapp.com/markdown">http://dayoneapp.com/markdown</a><br/>
</p>
<h3>Headers</h3>
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
<h3>Lists</h3>
<ol>
<li>Numbered </li>
<li>List</li>
</ol>
<ul>
<li>Bulleted</li>
<li>List</li>
</ul>
<h3>Images</h3>
<p><img src="http://bit.ly/do-image" alt="Alt Text" /></p>
<h3>Blockquotes</h3>
<blockquote>
<p>Angle brackets are used for blockquotes.</p>
</blockquote>
<h3>Tables</h3>
<table>
<thead>
<tr>
<th>One</th>
<th>Two</th>
<th>Three</th>
</tr>
</thead>
<tbody>
<tr>
<td>Blue</td>
<td>White</td>
<td>Gray</td>
</tr>
<tr>
<td>Green</td>
<td>Yellow</td>
<td>Red</td>
</tr>
</tbody>
</table>
<h3>Horizontal Rules</h3>
<p>Three or more dashes or asterisks</p>
<hr />
<h3>Code & Preformatted Text</h3>
<p><code><code></code> spans are delimited by backticks. You can include literal backticks like <code>`this`</code>.</p>
<pre><code>Preformatted text block using a tab.
</code></pre>
</body>
</html>