29 lines
993 B
HTML
29 lines
993 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>ScriptCraft</title>
|
|
<link href="vendor/markdown.css" media="all" rel="stylesheet" type="text/css" />
|
|
<link href="vendor/toc.css" media="all" rel="stylesheet" type="text/css" />
|
|
<script src="vendor/jquery-1.10.2.min.js" type="text/javascript"></script>
|
|
<script src="vendor/jquery.toc.min.js" type="text/javascript"></script>
|
|
<script src="vendor/showdown.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$.get("YoungPersonsGuideToProgrammingMinecraft-de.md", function(content) {
|
|
$('#content').html(new Showdown.converter().makeHtml(content));
|
|
|
|
$('#toc .inner').toc({
|
|
'selectors': 'h1,h2,h3,h4',
|
|
'container': '#content'
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="toc"><div class="inner"></div></div>
|
|
<div id="content">
|
|
</div>
|
|
</body>
|
|
</html>
|