-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.47 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.47 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
<!doctype html>
<html>
<head>
<title>Markdown editor testing</title>
<script type="text/javascript" src="/marked.js"></script>
<script type="text/javascript" src="/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="/rangyinputs-jquery-1.1.2.js"></script>
<script type="text/javascript" src="/mdeditor.js"></script>
</head>
<body>
<blockquote>
It is not that we have a short space of time, but that we waste much of it.
Life is long enough, and it has been given in sufficiently generous measure
to allow the accomplishment of the very greatest things if the whole of it
is well invested. But when it is squandered in luxury and carelessness,
when it is devoted to no good end, forced at last by the ultimate necessity
we perceive that it has passed away before we were aware that it was
passing. So it is the life we receive is not short, but we make it so, nor
do we have any lack of it, but are wasteful of it. Just as great and
princely wealth is scattered in a moment when it comes into the hands of a
bad owner, while wealth however limited, if it is entrusted to a good
guardian, increases by use, so our life is amply long for him who orders it
properly.
<cite>Lucius Annaeus Seneca</cite>
</blockquote>
<textarea name="foobar" id="foobar" style="width: 1024px; height: 768px"></textarea>
<script type="text/javascript">
$('#foobar').mdEditor();
</script>
</body>
</html>