87 lines
2.6 KiB
HTML
87 lines
2.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="ch_ZN">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>HTML5魔塔样板JS进阶</title>
|
||
|
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||
|
<meta name="description" content="Description">
|
||
|
<meta http-equiv="pragma" content="no-cache">
|
||
|
<meta http-equiv="cache-control" content="no-cache">
|
||
|
<meta http-equiv="expires" content="0">
|
||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||
|
<link href="vue.css" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
<xml id="toolbox" style="display:none"></xml>
|
||
|
<div id="blocklyArea" style="opacity: 0;z-index: -1;"><div id="blocklyDiv"></div></div>
|
||
|
<textarea id="codeArea" style="display:none" spellcheck="false"></textarea>
|
||
|
<script>
|
||
|
window.$docsify = {
|
||
|
homepage: 'L1.md',
|
||
|
loadSidebar: true,
|
||
|
name: 'HTML5魔塔样板',
|
||
|
repo: 'https://github.com/ckcz123/mota-js',
|
||
|
// basepath: '../docs/',
|
||
|
|
||
|
// Search Support
|
||
|
search: {
|
||
|
maxAge: 43200000, // 过期时间,单位毫秒,默认一天
|
||
|
paths: 'auto',
|
||
|
placeholder: {
|
||
|
'/': '搜索文档...',
|
||
|
},
|
||
|
noData: {
|
||
|
'/': '找不到结果',
|
||
|
},
|
||
|
},
|
||
|
|
||
|
// load sidebar from _sidebar.md
|
||
|
loadSidebar: '_sidebar',
|
||
|
subMaxLevel: 2,
|
||
|
autoHeader: true,
|
||
|
auto2top: true,
|
||
|
mergeNavbar: true,
|
||
|
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}:{ss}',
|
||
|
plugins: [
|
||
|
/*
|
||
|
function(hook){
|
||
|
|
||
|
var renderScriptNode=function(str){
|
||
|
return str.replace(/```.*?\r?\n['"]run['"];[^]*?\r?\n```/g,function(x){
|
||
|
return eval(`(function(){${x.replace(/```.*?\r?\n['"]run['"];/,'').slice(0,-3)}})()`)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
var renderMotaAction=function(str){
|
||
|
return str.replace(bg.pattern,function(x){
|
||
|
return bg.replaceFunc(x)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
hook.beforeEach(function(content){
|
||
|
return renderMotaAction(renderScriptNode(
|
||
|
content
|
||
|
))
|
||
|
})
|
||
|
|
||
|
hook.doneEach(function(){
|
||
|
var map=bg.replaceToken
|
||
|
var node=document.querySelector('.markdown-section')
|
||
|
var str=node.innerHTML
|
||
|
for(var id in map){
|
||
|
str=str.replace(id,map[id])
|
||
|
}
|
||
|
node.innerHTML=str
|
||
|
})
|
||
|
}
|
||
|
*/
|
||
|
]
|
||
|
}
|
||
|
</script>
|
||
|
<!-- 为了保证时序用脚本加载这两个 -->
|
||
|
<script src="docsify.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|