We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e06a1d2 commit 31cca7aCopy full SHA for 31cca7a
404.html
@@ -0,0 +1,18 @@
1
+<html>
2
+ <head>
3
+ <title>ES6标准参考教程</title>
4
+ <script>
5
+ var loc = 'http://es6.ruanyifeng.com';
6
+ var regex = /http:\/\/es6\.ruanyifeng\.com\/docs\/([^#]+)#(.+)/;
7
+ var result = regex.exec(window.___location);
8
+ if (result) {
9
+ window.___location = loc + '/#docs/' + result[1] + '#' + result[2];
10
+ } else {
11
+ window.___location = loc;
12
+ }
13
+ </script>
14
+ </head>
15
+ <body>
16
+ <p>redirecting...</p>
17
+ </body>
18
+</html>
_navbar.md
@@ -0,0 +1,7 @@
+- 基础
+ * [主页](/README.md)
+
+- 配置
+ * [配置项](/configuration.md)
+ * [主题](/themes.md)
0 commit comments