pydu/docs/index.html

56 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>pydu - Python Data structures and Utils</title>
<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',
loadSidebar: true,
loadNavbar: true,
subMaxLevel: 2,
coverpage: true,
alias: {
'.*?/changelog': 'https://raw.githubusercontent.com/flaggo/pydu/master/CHANGELOG.md',
},
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
search: {
placeholder: {
'/zh-cn/': '搜索',
'/': 'Type to search',
},
noData: {
'/zh-cn/': '找不到结果',
'/': 'No Results',
}
},
plugins: [
function (hook, vm) {
hook.beforeEach(function (html) {
var url = 'https://github.com/flaggo/pydu/blob/master/docs/' + vm.route.file
var editHtml = '[:memo: Edit Document](' + url + ')\n'
return editHtml
+ html
+ '\n\n----\n\n'
+ '<a href="https://github.com/flaggo/pydu">pydu</a> Copyright &copy; 2017-2018 <a href="https://github.com/Prodesire">Prodesire</a>. '
+ 'Powered By <a href="https://github.com/QingWei-Li/docsify" target="_blank">docsify</a>.'
})
}
]
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<script src="//unpkg.com/prismjs/components/prism-python.min.js"></script>
</body>
</html>