-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
34 lines (33 loc) · 1.06 KB
/
Copy pathtest.html
File metadata and controls
34 lines (33 loc) · 1.06 KB
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
<h1 id="this-is-a-heading">This <strong>is</strong> a
<em>heading</em></h1>
<p>There is some regular text going on here now and there will be
<em>italics</em> and <strong>bold</strong> stuff.</p>
<h2 id="there-will-be-exposition-and-quotes">There will be exposition
and quotes</h2>
<p>There will be gobbldy gook written that will pass down the ages,
improving the lot of no one. Not once. Not ever.</p>
<p>So sayeth:</p>
<blockquote>
<p>That shit <em>Jay</em> said? That was some <strong>bullshit</strong>.
Maddening, it is.</p>
</blockquote>
<h2 id="there-will-be-lists">There will be lists</h2>
<ul>
<li>An <strong>unordered</strong> list item</li>
<li><em>Another</em> unordered list item</li>
</ul>
<h2 id="there-may-be-numbered-lists">There may be numbered lists</h2>
<ol type="1">
<li>Item 1</li>
<li><strong>Item</strong> 2</li>
<li>Item <strong>3</strong></li>
<li>Item 4</li>
</ol>
<h2 id="some-code">Some code</h2>
<pre><code>#include <stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}</code></pre>
<p>And a final plain, text paragraph.</p>