releaseNotes.html 973 Bytes
<!DOCTYPE html>
<html lang="en">
	<head>
		<title>AMDA Release Notes</title>
		<meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<meta name="keywords" content="" />
		<meta name="description" content="" />
		<link rel="icon" href="../favicon.ico" type="image/x-icon">
		<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> 
        <script type="text/javascript" src="../js/lib/showdown/showdown.min.js"></script>
	</head>

	<body>
        <div id="content">
        </div>
		<script>
            const xhttp = new XMLHttpRequest();
            xhttp.onload = function() {
                var target = document.getElementById('content');
                var converter = new showdown.Converter(),
                html      = converter.makeHtml(this.responseText);
                target.innerHTML = html;
            }
            xhttp.open("GET", "releaseNotes.md", true);
            xhttp.send();
        </script>
	</body>
</html>