2019-02-11 17:41:13 -05:00
|
|
|
<!-- Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Deno Style Guide</title>
|
2019-02-15 11:15:44 -05:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.14.2/build/styles/default.min.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.14.2/build/styles/github-gist.min.css">
|
|
|
|
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.14.2/build/highlight.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.14.2/build/languages/typescript.min.js"></script>
|
2019-02-11 17:41:13 -05:00
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
2019-02-12 23:54:08 -05:00
|
|
|
<a href="/"><img src="deno_logo_2.gif"></a>
|
2019-02-11 17:41:13 -05:00
|
|
|
<div id="manual"></div>
|
|
|
|
|
|
|
|
<script src="https://unpkg.com/showdown@1.9.0/dist/showdown.js"></script>
|
|
|
|
<script src="showdown_toc.js"></script>
|
|
|
|
<script>
|
|
|
|
const url = "style_guide.md";
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
const response = await fetch(url);
|
|
|
|
const content = await response.text();
|
|
|
|
|
|
|
|
let converter = new showdown.Converter({ extensions: ["toc"] });
|
|
|
|
let html = converter.makeHtml(content);
|
|
|
|
|
|
|
|
const manual = document.getElementById("manual");
|
|
|
|
manual.innerHTML = html;
|
|
|
|
|
|
|
|
// To make anchor links work properly, we have to manually scroll
|
|
|
|
// since the markdown is rendered dynamically.
|
|
|
|
if (window.location.hash) {
|
|
|
|
let el = document.getElementById(window.location.hash.slice(1));
|
|
|
|
window.scrollTo({ top: el.offsetTop });
|
|
|
|
}
|
2019-02-15 11:15:44 -05:00
|
|
|
|
|
|
|
// Disable automatic language detection
|
|
|
|
hljs.configure({
|
|
|
|
languages: [],
|
|
|
|
});
|
|
|
|
|
|
|
|
hljs.initHighlighting();
|
2019-02-11 17:41:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
main();
|
|
|
|
</script>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|