2021-08-10 11:24:18 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-cn">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>设计数据密集型应用</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="keywords" content="设计数据密集型应用"/>
|
|
|
|
<meta name="description" content="A magical documentation generator." />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"/>
|
2022-05-21 07:52:26 +08:00
|
|
|
<link rel="stylesheet" href="js/katex.min.css"/>
|
|
|
|
<link rel="stylesheet" href="js/vue.css" title="vue"/>
|
|
|
|
<link rel="stylesheet" href="js/dark.css" title="dark" disabled/>
|
|
|
|
<link rel="stylesheet" href="js/buble.css" title="buble" disabled/>
|
|
|
|
<link rel="stylesheet" href="js/pure.css" title="pure" disabled/>
|
2021-08-10 11:24:18 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="app">Loading ...</div>
|
|
|
|
<script>
|
|
|
|
// Set html "lang" attribute based on URL
|
2021-08-19 08:52:41 +08:00
|
|
|
var lang = location.hash.match(/#\/(zh-tw)\//);
|
2021-08-10 11:24:18 +08:00
|
|
|
if (lang) {
|
|
|
|
document.documentElement.setAttribute('lang', lang[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// configuration
|
|
|
|
window.$docsify = {
|
2021-09-03 11:00:42 +08:00
|
|
|
name: 'DDIA',
|
2021-08-10 11:24:18 +08:00
|
|
|
repo: 'Vonng/ddia',
|
|
|
|
auto2top: true,
|
2021-08-19 08:35:46 +08:00
|
|
|
coverpage: false,
|
2021-08-10 11:24:18 +08:00
|
|
|
executeScript: true,
|
|
|
|
loadSidebar: true,
|
|
|
|
loadNavbar: true,
|
|
|
|
mergeNavbar: true,
|
|
|
|
relativePath: true,
|
|
|
|
maxLevel: 4,
|
|
|
|
subMaxLevel: 3,
|
|
|
|
alias: {
|
|
|
|
'/.*/_cover.md': '/_navbar.md',
|
|
|
|
},
|
|
|
|
search: {
|
|
|
|
maxAge: 10000,
|
|
|
|
paths: 'auto',
|
|
|
|
noData: {
|
|
|
|
'/': '没有结果!',
|
|
|
|
'/zh-tw/': '沒有結果!',
|
2021-09-03 11:00:18 +08:00
|
|
|
'/en-us/': 'No Results',
|
2021-08-10 11:24:18 +08:00
|
|
|
},
|
|
|
|
placeholder: {
|
|
|
|
'/': '搜索',
|
|
|
|
'/zh-tw/': '搜索',
|
2021-09-03 11:00:18 +08:00
|
|
|
'/en-us/': 'Search',
|
2021-08-10 11:24:18 +08:00
|
|
|
},
|
2021-09-03 11:00:18 +08:00
|
|
|
pathNamespaces: ['/zh-tw', '/en-us']
|
2021-08-19 08:52:41 +08:00
|
|
|
}
|
2021-08-10 11:24:18 +08:00
|
|
|
};
|
|
|
|
</script>
|
2022-05-21 07:52:26 +08:00
|
|
|
<script src="js/docsify-katex.js"></script>
|
|
|
|
<script src="js/docsify.min.js"></script>
|
|
|
|
<script src="js/search.min.js"></script>
|
2021-08-10 11:24:18 +08:00
|
|
|
</body>
|
|
|
|
</html>
|