Files
course/index.html
王鹏 5597ca12de init
2025-08-14 14:46:45 +08:00

34 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>