Skip to content

Commit d9b8f08

Browse files
committed
put this back
1 parent 5fcf528 commit d9b8f08

File tree

90 files changed

+22163
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+22163
-0
lines changed

docs/book/book/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

docs/book/book/404.html

+202
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js light">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - rust-analyzer</title>
7+
<base href="/rust-analyzer/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content="">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff" />
15+
16+
<link rel="icon" href="favicon.svg">
17+
<link rel="shortcut icon" href="favicon.png">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/general.css">
20+
<link rel="stylesheet" href="css/chrome.css">
21+
<link rel="stylesheet" href="css/print.css" media="print">
22+
23+
<!-- Fonts -->
24+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
25+
<link rel="stylesheet" href="fonts/fonts.css">
26+
27+
<!-- Highlight.js Stylesheets -->
28+
<link rel="stylesheet" href="highlight.css">
29+
<link rel="stylesheet" href="tomorrow-night.css">
30+
<link rel="stylesheet" href="ayu-highlight.css">
31+
32+
<!-- Custom theme stylesheets -->
33+
34+
<!-- MathJax -->
35+
<script async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
36+
</head>
37+
<body>
38+
<div id="body-container">
39+
<!-- Provide site root to javascript -->
40+
<script>
41+
var path_to_root = "";
42+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
43+
</script>
44+
45+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
46+
<script>
47+
try {
48+
var theme = localStorage.getItem('mdbook-theme');
49+
var sidebar = localStorage.getItem('mdbook-sidebar');
50+
51+
if (theme.startsWith('"') && theme.endsWith('"')) {
52+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
53+
}
54+
55+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
56+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
57+
}
58+
} catch (e) { }
59+
</script>
60+
61+
<!-- Set the theme before any content is loaded, prevents flash -->
62+
<script>
63+
var theme;
64+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
65+
if (theme === null || theme === undefined) { theme = default_theme; }
66+
var html = document.querySelector('html');
67+
html.classList.remove('no-js')
68+
html.classList.remove('light')
69+
html.classList.add(theme);
70+
html.classList.add('js');
71+
</script>
72+
73+
<!-- Hide / unhide sidebar before it is displayed -->
74+
<script>
75+
var html = document.querySelector('html');
76+
var sidebar = null;
77+
if (document.body.clientWidth >= 1080) {
78+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
79+
sidebar = sidebar || 'visible';
80+
} else {
81+
sidebar = 'hidden';
82+
}
83+
html.classList.remove('sidebar-visible');
84+
html.classList.add("sidebar-" + sidebar);
85+
</script>
86+
87+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
88+
<div class="sidebar-scrollbox">
89+
<ol class="chapter"><li class="chapter-item expanded "><a href="index.html"><strong aria-hidden="true">1.</strong> Introduction</a></li><li class="chapter-item expanded "><a href="installation/index.html"><strong aria-hidden="true">2.</strong> Installation</a></li><li class="chapter-item expanded "><a href="troubleshooting/index.html"><strong aria-hidden="true">3.</strong> Troubleshooting</a></li><li class="chapter-item expanded "><a href="configuration/index.html"><strong aria-hidden="true">4.</strong> Configuration</a></li><li class="chapter-item expanded "><a href="non_cargo_based_projects/index.html"><strong aria-hidden="true">5.</strong> Non-Cargo Based Projects</a></li><li class="chapter-item expanded "><a href="security/index.html"><strong aria-hidden="true">6.</strong> Security</a></li><li class="chapter-item expanded "><a href="privacy/index.html"><strong aria-hidden="true">7.</strong> Privacy</a></li><li class="chapter-item expanded "><a href="features/index.html"><strong aria-hidden="true">8.</strong> Features</a></li><li class="chapter-item expanded "><a href="assists/index.html"><strong aria-hidden="true">9.</strong> Assists (Code Actions)</a></li><li class="chapter-item expanded "><a href="diagnostics/index.html"><strong aria-hidden="true">10.</strong> Diagnostics</a></li><li class="chapter-item expanded "><a href="editor_features/index.html"><strong aria-hidden="true">11.</strong> Editor Features</a></li></ol>
90+
</div>
91+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
92+
</nav>
93+
94+
<div id="page-wrapper" class="page-wrapper">
95+
96+
<div class="page">
97+
<div id="menu-bar-hover-placeholder"></div>
98+
<div id="menu-bar" class="menu-bar sticky bordered">
99+
<div class="left-buttons">
100+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
101+
<i class="fa fa-bars"></i>
102+
</button>
103+
<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">
104+
<i class="fa fa-paint-brush"></i>
105+
</button>
106+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
107+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
108+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
109+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
110+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
111+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
112+
</ul>
113+
<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">
114+
<i class="fa fa-search"></i>
115+
</button>
116+
</div>
117+
118+
<h1 class="menu-title">rust-analyzer</h1>
119+
120+
<div class="right-buttons">
121+
<a href="print.html" title="Print this book" aria-label="Print this book">
122+
<i id="print-button" class="fa fa-print"></i>
123+
</a>
124+
<a href="https://github.com/rust-analyzer/rust-analyzer/tree/master/manual" title="Git repository" aria-label="Git repository">
125+
<i id="git-repository-button" class="fa fa-github"></i>
126+
</a>
127+
128+
</div>
129+
</div>
130+
131+
<div id="search-wrapper" class="hidden">
132+
<form id="searchbar-outer" class="searchbar-outer">
133+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
134+
</form>
135+
<div id="searchresults-outer" class="searchresults-outer hidden">
136+
<div id="searchresults-header" class="searchresults-header"></div>
137+
<ul id="searchresults">
138+
</ul>
139+
</div>
140+
</div>
141+
142+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
143+
<script>
144+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
145+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
146+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
147+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
148+
});
149+
</script>
150+
151+
<div id="content" class="content">
152+
<main>
153+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
154+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
155+
156+
</main>
157+
158+
<nav class="nav-wrapper" aria-label="Page navigation">
159+
<!-- Mobile navigation buttons -->
160+
161+
162+
<div style="clear: both"></div>
163+
</nav>
164+
</div>
165+
</div>
166+
167+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
168+
169+
</nav>
170+
171+
</div>
172+
173+
174+
175+
<script>
176+
window.playground_line_numbers = true;
177+
</script>
178+
179+
<script>
180+
window.playground_copyable = true;
181+
</script>
182+
183+
<script src="ace.js"></script>
184+
<script src="editor.js"></script>
185+
<script src="mode-rust.js"></script>
186+
<script src="theme-dawn.js"></script>
187+
<script src="theme-tomorrow_night.js"></script>
188+
189+
<script src="elasticlunr.min.js"></script>
190+
<script src="mark.min.js"></script>
191+
<script src="searcher.js"></script>
192+
193+
<script src="clipboard.min.js"></script>
194+
<script src="highlight.js"></script>
195+
<script src="book.js"></script>
196+
197+
<!-- Custom JS scripts -->
198+
199+
200+
</div>
201+
</body>
202+
</html>

docs/book/book/FontAwesome/css/font-awesome.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)