-
Notifications
You must be signed in to change notification settings - Fork 10
/
markdown.html
executable file
·44 lines (40 loc) · 1.5 KB
/
markdown.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>markItUp 2.0 - Markdown demo</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="markitup/skins/default/styles.css" />
<link rel="stylesheet" href="markitup/sets/markdown/styles.css" />
<script src="js/jquery.js"></script>
<script src="markitup/jquery.markitup.js"></script>
<script src="markitup/addons/markdownParser/set.js"></script>
<script src="markitup/sets/markdown/set.js"></script>
<script>
$(function() {
$('#markItUp').markItUp( markItUpSettings );
});
</script>
</head>
<body>
<header>
<div id="flickr"><a href="http://bit.ly/7CH73R"><img src="img/flickr.png" alt="Screeshots on flickr"></a></div>
<div id="vimeo"><a href="http://vimeo.com/tag:markitup2"><img src="img/vimeo.png" alt="Screecasts on vimeo"></a></div>
</header>
<section>
<textarea id="markItUp" rows="20" cols="80">Welcome to the markItUp! 2.0 **Markdown demo**</textarea>
<div id="myPreview"></div>
<p>Realtime preview with <a href="http://www.attacklab.net/">ShowBown</a> - By John Fraser</p>
</section>
<footer>
<h4>Note:</h4>
<p>This version is provided as is.<br>No time to finish it.<br>It's not proper for production use.</p>
<h4>Credits:</h4>
<ul>
<li>MarkItUp! by <a href="http://jaysalvat.com/">Jay Salvat</a></li>
<li>Fugue icons by <a href="http://pinvoke.com/">Yusuke Kamiyamane</a></li>
<li>Flickr / vimeo icons by <a href="http://dryicons.com/">DryIcons</a></li>
</ul>
</footer>
</body>
</html>