markdown-preview-mode/preview.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2014-09-14 11:18:24 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
<title>Markdown preview</title>
${MD_STYLE}
<script src="http://code.jquery.com/jquery-1.12.4.min.js"></script>
2016-12-05 14:40:52 +01:00
${MD_JS}
2014-09-14 11:18:24 +02:00
<script>
(function($, undefined) {
2016-12-05 12:19:43 +01:00
var socket = new WebSocket("ws://${WS_HOST}:${WS_PORT}");
socket.onopen = function() {
console.log("Connection established.");
socket.send("MDPM-Register-UUID: ${MD_UUID}");
};
socket.onclose = function(event) {
if (event.wasClean) {
console.log('Connection closed gracefully.');
} else {
console.log('Connection terminated.');
}
console.log('Code: ' + event.code + ' reason: ' + event.reason);
};
socket.onmessage = function(event) {
2014-09-15 21:21:44 +02:00
$("#markdown-body").html($(event.data).find("#content").html());
var scroll = $(document).height() * ($(event.data).find("#position-percentage").html() / 100);
$("html, body").animate({ scrollTop: scroll }, 600);
};
socket.onerror = function(error) {
console.log("Error: " + error.message);
};
})(jQuery);
2014-09-14 11:18:24 +02:00
</script>
</head>
<body>
<article id="markdown-body" class="markdown-body">
2014-09-14 11:18:24 +02:00
<p>Markdown preview</p>
</article>
</body>
</html>