| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!--
- * @Description:
- * @Autor: lin
- * @Date: 2025-01-06 17:16:32
- * @LastEditors: lin
- * @LastEditTime: 2025-01-07 15:38:07
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document-new</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
- <meta name="description" content="Description">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css">
- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" />
- </head>
- <style>
- .active > p > a{
- color: #42b983 !important;
- }
- </style>
- <body>
- <nav>
- <a href="#/">EN</a>
- <a href="#/zh-cn/">中文</a>
- </nav>
- <div id="app"></div>
- <!-- Docsify v4 -->
- <script>
- window.$docsify = {
- loadSidebar: true,
- alias: {
- '/.*/_sidebar.md': '/_sidebar.md',
- },
- subMaxLevel: 4, // 设置子目录的最大显示级别(可选)
- sidebarDisplayLevel: 0,
- coverpage: true,
- loadNavbar: true,
- maxAge: 1000, // 过期时间,单位毫秒,默认一天
- search: 'auto', // 默认值
- // 支持本地化
- placeholder: {
- '/zh-cn/': '搜索',
- '/': '搜索'
- },
- // noData: '找不到结果',
- // // 搜索标题的最大层级, 1 - 6
- // depth: 2,
- // hideOtherSidebarContent: true, // 是否隐藏其他侧边栏内容
- // 避免搜索索引冲突
- // 同一域下的多个网站之间
- namespace: 'website-1',
- // 使用不同的索引作为路径前缀(namespaces)
- // 注意:仅适用于 paths: 'auto' 模式
- //
- // 初始化索引时,我们从侧边栏查找第一个路径
- // 如果它与列表中的前缀匹配,我们将切换到相应的索引
- // pathNamespaces: ['/zh-cn', '/ru-ru', '/ru-ru/v1'],
- // 您可以提供一个正则表达式来匹配前缀。在这种情况下,
- // 匹配到的字符串将被用来识别索引
- pathNamespaces: /^(\/(zh-cn|ru-ru))?(\/(v1|v2))?/
- }
- </script>
- <script src="./docsify.js"></script>
- <script src="./search.min.js" defer></script>
- <script src="./docify-sidebar-collapse.min.js"></script>
- </body>
- </html>
|