init
This commit is contained in:
33
index.html
Normal file
33
index.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Feast</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link rel="stylesheet" href="./vue.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script>
|
||||
window.$docsify = {
|
||||
name: '运行教程',
|
||||
auto2top: true, //当路线改变时,滚动到屏幕的顶部。
|
||||
coverpage: true, //激活封面功能。如果为true,则会从中加载_coverpage.md。
|
||||
executeScript: true, //执行页面上的脚本。只解析第一个脚本标记(演示)。如果存在Vue,则默认开启。
|
||||
loadSidebar: true, //_sidebar.md如果为真,则从_sidebar.md文件加载边栏,否则从指定的路径加载。
|
||||
loadNavbar: false, //_navbar.md如果为真,则从_navbar.md文件加载navbar ,否则从指定的路径加载。
|
||||
mergeNavbar: true, //Navbar将在小屏幕上与侧边栏合并。
|
||||
maxLevel: 4, //最大的内容表级别。
|
||||
subMaxLevel: 3, //在自定义边栏中添加目录(TOC)。
|
||||
search: {
|
||||
maxAge: 86400000, // 过期时间,单位毫秒,默认一天
|
||||
noData: '找不到结果',
|
||||
paths: 'auto',
|
||||
placeholder: '搜索',
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<script src="./docsify@4.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user