-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerated.html
More file actions
111 lines (104 loc) · 3.09 KB
/
generated.html
File metadata and controls
111 lines (104 loc) · 3.09 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alexander Mennborg's Website</title>
<meta name="description" content="My curriculum vitae (CV) / resume.">
<meta name="author" content="Alexander Mennborg">
<meta property="og:title" content="Alexander Mennborg's Website">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/">
<meta property="og:description" content="My curriculum vitae (CV) / resume.">
<!-- <meta property="og:image" content="image.png"> -->
<!-- <link rel="icon" href="/favicon.ico"> -->
<!-- <link rel="icon" href="/favicon.svg" type="image/svg+xml"> -->
<!-- <link rel="apple-touch-icon" href="/apple-touch-icon.png"> -->
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<h1>Hello World</h1>
<p>This is a test to see if my markdown parser/ html generator works as expected.
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do <strong>eiusmod</strong> tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis <code>nostrud</code> exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
hello
test <em>This is italic</em>, <strong>this is bold</strong> and <code>this is code</code>.
</p>
<h2>Markdown Syntax</h2>
<h3>Unordered List</h3>
<ul>
<li> Item 1
</li>
<li> Item 2
</li>
<li> Item 3
</li>
<ul>
<li> Item 3a
</li>
<li> Item 3b
</li></ul></ul>
<p>newline
</p>
<ul>
<li> Item 1
</li>
<li> Item 2
</li>
<li> Item 3
</li>
<ul>
<li> Item 3a
</li>
<li> Item 3b
</li></ul></ul>
<p>newline
</p>
<ul>
<li> Item 1
</li>
<li> Item 2
</li>
<li> Item 3
</li>
<ul>
<li> Item 3a
</li>
<li> Item 3b
</li></ul></ul>
<p>newline
</p>
<h3>Ordered List</h3>
<ol>
<li> Item 1
</li>
<li> Item 2
</li>
<li> Item 2
</li>
<ol>
<li> Item 3a
</li>
<li> Item 3b
</li></ol>
<li> Item 3
</li></ol>
<ol>
<li> Item 3
</li></ol>
<h3>Image</h3><img alt="Image" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Inadvertent_greeking_in_The_Straits_Times_%2826_April_2014%29%2C_Singapore_-_20140428.jpg/1920px-Inadvertent_greeking_in_The_Straits_Times_%2826_April_2014%29%2C_Singapore_-_20140428.jpg" width="100%"/>
<h3>Link</h3>
<p>You can just write the link in plain text <a href="https://github.com/Aleman778/aleman778.github.io">https://github.com/Aleman778/aleman778.github.io</a>
,
or use a <a href="https://github.com/Aleman778/aleman778.github.io">custom link</a>
.
</p>
<h3>Hello this text is included from another file</h3>
<p>You can do this by putting <code>@include "other_file.md"</code> in the beginning of a line.
That will essentially dump the contents of the other file into the current one.</p>
<script src="assets/script.js"></script>
</body>
</html>