2018-05-07 12:18:43 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-05-10 15:15:42 +00:00
|
|
|
<title>pydu - Python Data structures and Utils</title>
|
2018-05-07 12:18:43 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="description" content="Description">
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app">Loading ...</div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
|
|
|
name: 'pydu',
|
|
|
|
repo: 'https://github.com/flaggo/pydu',
|
2018-05-08 13:31:46 +00:00
|
|
|
loadSidebar: true,
|
|
|
|
loadNavbar: true,
|
2018-05-10 14:51:45 +00:00
|
|
|
subMaxLevel: 2,
|
2018-05-11 15:49:45 +00:00
|
|
|
coverpage: true,
|
2018-05-11 15:32:41 +00:00
|
|
|
alias: {
|
|
|
|
'.*?/changelog': 'https://raw.githubusercontent.com/flaggo/pydu/master/CHANGELOG.md',
|
|
|
|
},
|
2018-05-11 15:49:45 +00:00
|
|
|
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
|
2018-05-10 14:51:45 +00:00
|
|
|
search: {
|
|
|
|
placeholder: {
|
|
|
|
'/zh-cn/': '搜索',
|
|
|
|
'/': 'Type to search',
|
|
|
|
},
|
|
|
|
noData: {
|
|
|
|
'/zh-cn/': '找不到结果',
|
|
|
|
'/': 'No Results',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
function (hook) {
|
|
|
|
var footer = [
|
|
|
|
'<hr/>',
|
|
|
|
'<footer>',
|
2018-05-11 14:46:43 +00:00
|
|
|
'<span><a href="https://github.com/flaggo/pydu">pydu</a> Copyright © 2017-2018 <a href="https://github.com/Prodesire">Prodesire</a>. </span>',
|
2018-05-10 14:51:45 +00:00
|
|
|
'<span>Powered By <a href="https://github.com/QingWei-Li/docsify" target="_blank">docsify</a>.</span>',
|
|
|
|
'</footer>'
|
|
|
|
].join('');
|
|
|
|
hook.afterEach(function (html) {
|
|
|
|
return html + footer
|
|
|
|
})
|
|
|
|
}
|
|
|
|
]
|
2018-05-07 12:18:43 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
2018-05-10 14:51:45 +00:00
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
|
2018-05-07 12:18:43 +00:00
|
|
|
</body>
|
|
|
|
</html>
|