-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (31 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Cache-Control" content="no-cache,no-transform,no-siteapp" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>多说API文档</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="//cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//cdn.staticfile.org/jquery/1.11.1/jquery.min.js"></script>
<![endif]-->
<script src="//cdn.staticfile.org/marked/0.3.2/marked.min.js"></script>
<script src="js/all.js"></script>
</head>
<body>
<nav id="nav" class="markdown-partial col-xs-12 col-md-3"></nav>
<main id="main" class="col-xs-12 col-md-9"></main>
<script>
var instance = new NAME();
$(function(){
instance.dispatch();
instance.autoload($('.markdown-partial'), 'md');
instance.autoload($('.text-partial'), 'txt');
instance.autoload($('.html-partial'), 'html');
});
</script>
</body>
</html>