mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-03-26 02:53:46 +08:00
75 lines
3.0 KiB
HTML
75 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>plus-doc</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="icon" href="./static/image/favicon.ico" type="image/x-icon"/>
|
||
<link rel="shortcut icon" href="./static/image/favicon.ico" type="image/x-icon"/>
|
||
<meta charset="UTF-8">
|
||
<!-- 默认主题 -->
|
||
<link rel="stylesheet" href="./static/css/vue.css">
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script>
|
||
window.$docsify = {
|
||
// 项目名称
|
||
name: 'ruoyi-ai',
|
||
// 仓库地址,点击右上角的Github章鱼猫头像会跳转到此地址
|
||
repo: 'https://gitee.com/ruoyi-ai',
|
||
// 侧边栏支持,默认加载的是项目根目录下的_sidebar.md文件
|
||
loadSidebar: true,
|
||
// 导航栏支持,默认加载的是项目根目录下的_navbar.md文件
|
||
loadNavbar: true,
|
||
// 封面支持,默认加载的是项目根目录下的_coverpage.md文件
|
||
coverpage: true,
|
||
// 最大支持渲染的标题层级
|
||
maxLevel: 5,
|
||
// 自定义侧边栏后默认不会再生成目录,设置生成目录的最大层级(建议配置为2-4)
|
||
subMaxLevel: 4,
|
||
// 小屏设备下合并导航栏到侧边栏
|
||
mergeNavbar: true,
|
||
// 页脚支持,默认加载的是 _footer.md
|
||
loadFooter: true,
|
||
// 首页只展示封面(默认为false,与README.md进行拼接)
|
||
onlyCover: true,
|
||
search: {
|
||
maxAge: 86400000,// 过期时间,单位毫秒,默认一天
|
||
paths: 'auto',// 注意:仅适用于 paths: 'auto' 模式
|
||
placeholder: '👉👉👉在这里搜索关键字👈👈👈',
|
||
noData: '找不到结果',
|
||
depth: 4,
|
||
hideOtherSidebarContent: false,
|
||
namespace: 'Docsify-Guide',
|
||
}
|
||
}
|
||
</script>
|
||
<!-- docsify的js依赖 -->
|
||
<script src="./static/js/docsify.min.js"></script>
|
||
<!-- emoji表情支持 -->
|
||
<script src="./static/js/emoji.min.js"></script>
|
||
<!-- 图片放大缩小支持 -->
|
||
<script src="./static/js/zoom-image.min.js"></script>
|
||
<!-- 搜索功能支持 -->
|
||
<script src="./static/js/search.min.js"></script>
|
||
<!--在所有的代码块上添加一个简单的Click to copy按钮来允许用户从你的文档中轻易地复制代码-->
|
||
<script src="./static/js/docsify-copy-code.min.js"></script>
|
||
|
||
<!-- 回到顶部 -->
|
||
<script src="./static/js/docsify-scroll-to-top.min.js"></script>
|
||
<!-- 分页导航 -->
|
||
<script src="./static/js/docsify-pagination.min.js"></script>
|
||
<!-- 页脚-->
|
||
<script src="./static/js/docsify-footer.min.js"></script>
|
||
|
||
<!-- 代码高亮 -->
|
||
<script src="./static/js/prism-typescript.min.js"></script>
|
||
<script src="./static/js/prism-bash.min.js"></script>
|
||
</body>
|
||
</html>
|