mirror of
https://github.com/Estom/notes.git
synced 2026-02-03 02:23:31 +08:00
Merge branch 'master' of gitee.com:Eyestorm/notes
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
-
|
||||
|
||||
### 技术篇
|
||||
- docker
|
||||
- [docker](./docker/1%20简介安装.md)
|
||||
- git
|
||||
- Linux
|
||||
- Maven
|
||||
|
||||
7
_coverage.md
Normal file
7
_coverage.md
Normal file
@@ -0,0 +1,7 @@
|
||||
<!-- _coverpage.md -->
|
||||
|
||||
# Docsify使用指南
|
||||
|
||||
> 💪通灵诗人的个人知识库,欢迎关注。
|
||||
|
||||
[开始使用 Let Go](/README.md)
|
||||
5
_navbar.md
Normal file
5
_navbar.md
Normal file
@@ -0,0 +1,5 @@
|
||||
<!-- _navbar.md -->
|
||||
|
||||
* 关注我
|
||||
* [Github地址](https://github.com/Estom)
|
||||
* [Gitee地址](https://gitee.com/Eyestorm)
|
||||
7
_sidebar.md
Normal file
7
_sidebar.md
Normal file
@@ -0,0 +1,7 @@
|
||||
<!-- _sidebar.md -->
|
||||
|
||||
* Typora+Docsify使用指南
|
||||
* [Docsify使用指南](/ProjectDocs/Docsify使用指南.md) <!--注意这里是相对路径-->
|
||||
* [Typora+Docsify快速入门](/ProjectDocs/Typora+Docsify快速入门.md)
|
||||
* Docsify部署
|
||||
* [Docsify部署教程](/ProjectDocs/Docsify部署教程.md)
|
||||
62
index.html
Normal file
62
index.html
Normal file
@@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>通灵诗人的笔记</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="icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script>
|
||||
window.$docsify = {
|
||||
// 项目名称
|
||||
name: '通灵诗人的笔记',
|
||||
// 仓库地址,点击右上角的Github章鱼猫头像会跳转到此地址
|
||||
repo: 'https://github.com/Estom/notes',
|
||||
// 侧边栏支持,默认加载的是项目根目录下的_sidebar.md文件
|
||||
// loadSidebar: true,
|
||||
// 导航栏支持,默认加载的是项目根目录下的_navbar.md文件
|
||||
loadNavbar: true,
|
||||
// 封面支持,默认加载的是项目根目录下的_coverpage.md文件
|
||||
coverpage: true,
|
||||
// 最大支持渲染的标题层级
|
||||
maxLevel: 5,
|
||||
// 自定义侧边栏后默认不会再生成目录,设置生成目录的最大层级(建议配置为2-4)
|
||||
subMaxLevel: 4,
|
||||
// 小屏设备下合并导航栏到侧边栏
|
||||
mergeNavbar: true,
|
||||
/*搜索相关设置*/
|
||||
search: {
|
||||
maxAge: 86400000,// 过期时间,单位毫秒,默认一天
|
||||
paths: 'auto',// 注意:仅适用于 paths: 'auto' 模式
|
||||
placeholder: '搜索',
|
||||
// 支持本地化
|
||||
placeholder: {
|
||||
'/zh-cn/': '搜索',
|
||||
'/': 'Type to search'
|
||||
},
|
||||
noData: '找不到结果',
|
||||
depth: 4,
|
||||
hideOtherSidebarContent: false,
|
||||
namespace: 'Docsify-Guide',
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<!-- Docsify v4 -->
|
||||
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
|
||||
<!-- emoji表情支持 -->
|
||||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
|
||||
<!-- 图片放大缩小支持 -->
|
||||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
|
||||
<!-- 搜索功能支持 -->
|
||||
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
||||
<!--在所有的代码块上添加一个简单的Click to copy按钮来允许用户从你的文档中轻易地复制代码-->
|
||||
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code/dist/docsify-copy-code.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user