entybion/html/index.html
2014-05-01 15:09:46 +02:00

20 lines
No EOL
732 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Un semplice editor di testo</title>
</head>
<body>
<input id="open" type="file" style="display:none" accept="text/*"/>
<input id="save" type="file" nwsaveas style="display:none" accept="text/*"/>
<textarea id="editor" style="position:fixed;top:0;bottom:0;left:0;right:0"></textarea>
<script src="../js/main.js"></script>
<script src="../js/lib/jquery-1.9.1.min.js"></script>
<script src="../js/lib/rangyinputs-jquery.min.js"></script>
<script src="../js/lib/element_resize_detection.js"></script>
<script src="../js/lib/js-markdown-extra.js"></script>
<script src="../js/jquery.meltdown.js"></script>
<script type="text/javascript">
jQuery('texterea').meltdown();
</script>
</body>
</html>