2015-07-19 06:08:38 +08:00
|
|
|
<!DOCTYPE HTML>
|
2018-04-09 12:10:44 +08:00
|
|
|
<html lang="{{ language }}" class="sidebar-visible no-js">
|
2015-07-19 06:08:38 +08:00
|
|
|
<head>
|
2018-03-07 21:02:06 +08:00
|
|
|
<!-- Book generated using mdBook -->
|
2015-07-19 06:08:38 +08:00
|
|
|
<meta charset="UTF-8">
|
2017-09-08 05:19:22 +08:00
|
|
|
<title>{{ title }}</title>
|
2015-07-19 06:08:38 +08:00
|
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
|
2016-02-25 21:32:49 +08:00
|
|
|
<meta name="description" content="{{ description }}">
|
2015-07-19 06:08:38 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-01-16 20:29:20 +08:00
|
|
|
<meta name="theme-color" content="#ffffff" />
|
2015-07-19 06:08:38 +08:00
|
|
|
|
2015-09-05 23:26:17 +08:00
|
|
|
<base href="{{ path_to_root }}">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="book.css">
|
2017-04-13 22:46:54 +08:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">
|
2015-09-14 02:03:34 +08:00
|
|
|
|
2016-02-23 00:17:07 +08:00
|
|
|
<link rel="shortcut icon" href="{{ favicon }}">
|
|
|
|
|
2015-09-14 02:03:34 +08:00
|
|
|
<!-- Font Awesome -->
|
2018-05-16 01:18:02 +08:00
|
|
|
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
|
2015-09-14 02:03:34 +08:00
|
|
|
|
2015-09-05 23:26:17 +08:00
|
|
|
<link rel="stylesheet" href="highlight.css">
|
2015-09-14 17:08:48 +08:00
|
|
|
<link rel="stylesheet" href="tomorrow-night.css">
|
2017-06-07 04:35:44 +08:00
|
|
|
<link rel="stylesheet" href="ayu-highlight.css">
|
2015-09-05 23:26:17 +08:00
|
|
|
|
2018-04-09 12:10:44 +08:00
|
|
|
<!-- Custom theme stylesheets -->
|
2017-05-20 19:56:01 +08:00
|
|
|
{{#each additional_css}}
|
|
|
|
<link rel="stylesheet" href="{{this}}">
|
|
|
|
{{/each}}
|
|
|
|
|
2017-06-25 06:32:26 +08:00
|
|
|
{{#if mathjax_support}}
|
2015-09-11 05:30:29 +08:00
|
|
|
<!-- MathJax -->
|
2018-04-09 12:10:44 +08:00
|
|
|
<script async type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
|
2017-06-25 06:32:26 +08:00
|
|
|
{{/if}}
|
2015-09-15 00:12:45 +08:00
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
</head>
|
2016-06-15 22:25:28 +08:00
|
|
|
<body class="light">
|
2018-01-23 20:30:50 +08:00
|
|
|
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
try {
|
|
|
|
var theme = localStorage.getItem('mdbook-theme');
|
|
|
|
var sidebar = localStorage.getItem('mdbook-sidebar');
|
|
|
|
|
|
|
|
if (theme.startsWith('"') && theme.endsWith('"')) {
|
|
|
|
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
|
|
|
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
|
|
|
}
|
|
|
|
} catch (e) { }
|
|
|
|
</script>
|
|
|
|
|
2015-09-15 00:12:45 +08:00
|
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
|
|
|
<script type="text/javascript">
|
2018-01-22 07:04:16 +08:00
|
|
|
var theme;
|
2018-01-23 20:30:50 +08:00
|
|
|
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
2017-06-12 03:54:09 +08:00
|
|
|
if (theme === null || theme === undefined) { theme = 'light'; }
|
2018-01-13 02:44:13 +08:00
|
|
|
document.body.className = theme;
|
2018-04-09 12:10:44 +08:00
|
|
|
document.querySelector('html').className = theme + ' js';
|
2015-09-15 00:12:45 +08:00
|
|
|
</script>
|
2015-07-19 20:02:21 +08:00
|
|
|
|
2015-09-24 22:47:33 +08:00
|
|
|
<!-- Hide / unhide sidebar before it is displayed -->
|
|
|
|
<script type="text/javascript">
|
2018-02-18 15:05:15 +08:00
|
|
|
var html = document.querySelector('html');
|
2017-10-14 06:25:12 +08:00
|
|
|
var sidebar = 'hidden';
|
2018-01-22 07:04:16 +08:00
|
|
|
if (document.body.clientWidth >= 1080) {
|
2018-01-23 20:30:50 +08:00
|
|
|
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
2018-01-22 07:04:16 +08:00
|
|
|
sidebar = sidebar || 'visible';
|
|
|
|
}
|
2018-02-18 15:05:15 +08:00
|
|
|
html.classList.remove('sidebar-visible');
|
|
|
|
html.classList.add("sidebar-" + sidebar);
|
2015-09-24 22:47:33 +08:00
|
|
|
</script>
|
|
|
|
|
2018-01-15 21:26:53 +08:00
|
|
|
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
2015-07-30 05:32:01 +08:00
|
|
|
{{#toc}}{{/toc}}
|
2018-01-15 21:26:53 +08:00
|
|
|
</nav>
|
2015-07-29 03:01:13 +08:00
|
|
|
|
|
|
|
<div id="page-wrapper" class="page-wrapper">
|
|
|
|
|
2018-01-15 21:26:53 +08:00
|
|
|
<div class="page">
|
2017-09-28 07:06:30 +08:00
|
|
|
{{> header}}
|
2015-08-01 23:21:05 +08:00
|
|
|
<div id="menu-bar" class="menu-bar">
|
2018-01-19 23:41:50 +08:00
|
|
|
<div id="menu-bar-sticky-container">
|
2018-04-09 12:10:44 +08:00
|
|
|
<div class="left-buttons">
|
2018-01-27 18:52:47 +08:00
|
|
|
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
2018-01-19 23:41:50 +08:00
|
|
|
<i class="fa fa-bars"></i>
|
|
|
|
</button>
|
2018-01-27 18:52:47 +08:00
|
|
|
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
2018-01-19 23:41:50 +08:00
|
|
|
<i class="fa fa-paint-brush"></i>
|
|
|
|
</button>
|
2018-02-15 07:37:19 +08:00
|
|
|
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="light">Light <span class="default">(default)</span></button></li>
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
|
|
|
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
2018-01-19 23:41:50 +08:00
|
|
|
</ul>
|
2018-03-07 21:02:06 +08:00
|
|
|
{{#if search_enabled}}
|
|
|
|
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
|
|
|
|
<i class="fa fa-search"></i>
|
|
|
|
</button>
|
|
|
|
{{/if}}
|
2018-01-19 23:41:50 +08:00
|
|
|
</div>
|
|
|
|
|
2018-03-07 21:02:06 +08:00
|
|
|
<h1 class="menu-title">{{ book_title }}</h1>
|
2018-01-19 23:41:50 +08:00
|
|
|
|
|
|
|
<div class="right-buttons">
|
2018-01-27 18:52:47 +08:00
|
|
|
<a href="print.html" title="Print this book" aria-label="Print this book">
|
2018-01-19 23:41:50 +08:00
|
|
|
<i id="print-button" class="fa fa-print"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
2015-09-05 17:40:40 +08:00
|
|
|
</div>
|
2015-08-01 23:21:05 +08:00
|
|
|
</div>
|
2015-08-04 04:09:26 +08:00
|
|
|
|
2018-03-07 21:02:06 +08:00
|
|
|
{{#if search_enabled}}
|
2018-04-09 12:10:44 +08:00
|
|
|
<div id="search-wrapper" class="hidden">
|
2018-04-21 23:27:51 +08:00
|
|
|
<form id="searchbar-outer" class="searchbar-outer">
|
|
|
|
<input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
|
|
|
</form>
|
2018-04-09 12:10:44 +08:00
|
|
|
<div id="searchresults-outer" class="searchresults-outer hidden">
|
|
|
|
<div id="searchresults-header" class="searchresults-header"></div>
|
|
|
|
<ul id="searchresults">
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-03-07 21:02:06 +08:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2018-01-15 21:26:53 +08:00
|
|
|
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
|
|
|
<script type="text/javascript">
|
2018-01-13 02:44:13 +08:00
|
|
|
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
|
|
|
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
|
|
|
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
|
|
|
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
|
|
|
});
|
2018-01-15 21:26:53 +08:00
|
|
|
</script>
|
|
|
|
|
2015-08-01 20:12:55 +08:00
|
|
|
<div id="content" class="content">
|
2018-01-15 21:26:53 +08:00
|
|
|
<main>
|
|
|
|
{{{ content }}}
|
|
|
|
</main>
|
2017-12-06 16:20:22 +08:00
|
|
|
|
2018-01-15 21:26:53 +08:00
|
|
|
<nav class="nav-wrapper" aria-label="Page navigation">
|
2017-12-18 13:14:25 +08:00
|
|
|
<!-- Mobile navigation buttons -->
|
|
|
|
{{#previous}}
|
2018-01-27 18:52:47 +08:00
|
|
|
<a rel="prev" href="{{link}}" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
2017-12-18 13:14:25 +08:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{{/previous}}
|
|
|
|
|
|
|
|
{{#next}}
|
2018-01-27 18:52:47 +08:00
|
|
|
<a rel="next" href="{{link}}" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
2017-12-18 13:14:25 +08:00
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
{{/next}}
|
|
|
|
|
|
|
|
<div style="clear: both"></div>
|
2018-01-15 21:26:53 +08:00
|
|
|
</nav>
|
2017-12-06 16:20:22 +08:00
|
|
|
</div>
|
2015-08-31 23:09:18 +08:00
|
|
|
</div>
|
2015-08-06 21:24:34 +08:00
|
|
|
|
2018-01-15 21:26:53 +08:00
|
|
|
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
|
|
|
{{#previous}}
|
2018-01-27 18:52:47 +08:00
|
|
|
<a href="{{link}}" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
2018-01-15 21:26:53 +08:00
|
|
|
<i class="fa fa-angle-left"></i>
|
|
|
|
</a>
|
|
|
|
{{/previous}}
|
|
|
|
|
|
|
|
{{#next}}
|
2018-01-27 18:52:47 +08:00
|
|
|
<a href="{{link}}" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
2018-01-15 21:26:53 +08:00
|
|
|
<i class="fa fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
{{/next}}
|
|
|
|
</nav>
|
2015-08-01 20:12:55 +08:00
|
|
|
|
2015-07-29 03:01:13 +08:00
|
|
|
</div>
|
2015-07-19 20:02:21 +08:00
|
|
|
|
2018-01-07 22:10:48 +08:00
|
|
|
{{#if livereload}}
|
2016-04-02 10:46:05 +08:00
|
|
|
<!-- Livereload script (if served using the cli tool) -->
|
2018-01-07 22:10:48 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
var socket = new WebSocket("{{{livereload}}}");
|
|
|
|
socket.onmessage = function (event) {
|
|
|
|
if (event.data === "reload") {
|
|
|
|
socket.close();
|
|
|
|
location.reload(true); // force reload from server (not from cache)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
window.onbeforeunload = function() {
|
|
|
|
socket.close();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{{/if}}
|
2016-04-02 10:46:05 +08:00
|
|
|
|
2017-05-16 13:05:21 +08:00
|
|
|
{{#if google_analytics}}
|
2017-09-30 17:06:30 +08:00
|
|
|
<!-- Google Analytics Tag -->
|
2018-04-09 12:10:44 +08:00
|
|
|
<script type="text/javascript">
|
2017-09-30 17:06:30 +08:00
|
|
|
var localAddrs = ["localhost", "127.0.0.1", ""];
|
2017-05-16 13:05:21 +08:00
|
|
|
|
2017-12-06 16:20:22 +08:00
|
|
|
// make sure we don't activate google analytics if the developer is
|
2017-09-30 17:06:30 +08:00
|
|
|
// inspecting the book locally...
|
2017-09-30 17:17:01 +08:00
|
|
|
if (localAddrs.indexOf(document.location.hostname) === -1) {
|
2017-10-09 09:52:22 +08:00
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
2017-09-30 17:06:30 +08:00
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', '{{google_analytics}}', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
}
|
2017-05-16 13:05:21 +08:00
|
|
|
</script>
|
2017-06-29 12:35:20 +08:00
|
|
|
{{/if}}
|
2017-05-16 13:05:21 +08:00
|
|
|
|
2018-03-07 21:02:06 +08:00
|
|
|
{{#if playpen_js}}
|
|
|
|
<script src="ace.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="editor.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="mode-rust.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="theme-dawn.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="theme-tomorrow_night.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if search_enabled}}
|
|
|
|
<script src="searchindex.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
{{/if}}
|
|
|
|
{{#if search_js}}
|
|
|
|
<script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="searcher.js" type="text/javascript" charset="utf-8"></script>
|
2017-06-29 12:35:20 +08:00
|
|
|
{{/if}}
|
2017-05-16 13:05:21 +08:00
|
|
|
|
2018-04-09 12:10:44 +08:00
|
|
|
<script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="highlight.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<script src="book.js" type="text/javascript" charset="utf-8"></script>
|
2017-10-04 19:59:10 +08:00
|
|
|
|
2018-04-09 12:10:44 +08:00
|
|
|
<!-- Custom JS scripts -->
|
2017-10-04 19:59:10 +08:00
|
|
|
{{#each additional_js}}
|
|
|
|
<script type="text/javascript" src="{{this}}"></script>
|
|
|
|
{{/each}}
|
|
|
|
|
2018-05-01 20:29:34 +08:00
|
|
|
{{#if is_print}}
|
|
|
|
{{#if mathjax_support}}
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.addEventListener('load', function() {
|
|
|
|
MathJax.Hub.Register.StartupHook('End', function() {
|
|
|
|
window.setTimeout(window.print, 100);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{else}}
|
|
|
|
<script type="text/javascript">
|
|
|
|
window.addEventListener('load', function() {
|
|
|
|
window.setTimeout(window.print, 100);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|
|
|
|
|
2015-07-19 06:08:38 +08:00
|
|
|
</body>
|
|
|
|
</html>
|