-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
coder-new
committed
May 7, 2024
1 parent
09c3485
commit 66df293
Showing
47 changed files
with
623 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ export default hopeTheme({ | |
Gmail: "mailto:[email protected]", | ||
Email: | ||
"https://wx.mail.qq.com/home/index?t=readmail_businesscard_midpage&nocheck=true&name=%E6%9D%A8%E6%96%B0&icon=https%3A%2F%2Fp.qlogo.cn%2Fqqmail_head%2FBkBjDTOZTuwDOcyvCy2I1B6zbGSkls5zqHIyibStOeqCDQia3zH2Nlgjdd3pibS09TD%2F160&mail=xinyang424%40qq.com&code=FwUG9hkLKs-dHLjnuWFlkk14SMS1VLiQ_XBJqksBPYpKOi6fWFNZbmUlTJGRZOMz10Lq6BqONi27BbmSEKOOKA", | ||
// 掘金: ["https://juejin.cn/user/4306129039670574/collections", "https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web/static/favicons/apple-touch-icon.png"], | ||
}, | ||
}, | ||
// themeColor: { | ||
|
@@ -55,6 +56,7 @@ export default hopeTheme({ | |
createdTime: false, | ||
updatedTime: false, | ||
}, | ||
// 评论设置 | ||
comment: { | ||
provider: "Giscus", | ||
repo: "xinyang424/xinyang424.github.io", | ||
|
@@ -67,19 +69,21 @@ export default hopeTheme({ | |
// provider: "Waline", | ||
// serverURL: "https://blog.waline.coder-new.cn/", | ||
}, | ||
// 博客内容搜索功能 | ||
searchPro: true, | ||
|
||
mdEnhance: { | ||
align: true, | ||
attrs: true, | ||
codetabs: true, | ||
component: true, | ||
demo: true, | ||
figure: true, | ||
imgLazyload: true, | ||
imgSize: true, | ||
include: true, | ||
mark: true, | ||
align: true, // 自定义对齐 | ||
// attrs: true, // 属性支持 | ||
codetabs: true, // 代码块分组 | ||
component: true, // 组件 | ||
demo: true, // 代码演示 | ||
figure: true, // 渲染的图片下面添加描述,或者点击图片带跳转 | ||
imgLazyload: true, // 图片懒加载 | ||
imgSize: true, // 设置图片大小 如![Alt](图片路径 "图片标题" =宽x高) https://theme-hope.vuejs.press/zh/guide/markdown/grammar/image.html#%E9%AB%98%E7%BA%A7%E7%94%A8%E6%B3%95 | ||
// include: true,// 导入文件 | ||
alert: true, // GFM 警告 https://theme-hope.vuejs.press/zh/guide/markdown/stylize/alert.html | ||
mark: true, // 黄色标记 https://theme-hope.vuejs.press/zh/guide/markdown/stylize/mark.html | ||
stylize: [ | ||
{ | ||
matcher: "Recommended", | ||
|
@@ -93,10 +97,11 @@ export default hopeTheme({ | |
}, | ||
}, | ||
], | ||
sub: true, | ||
sup: true, | ||
tabs: true, | ||
vPre: true, | ||
|
||
// sub: true,// 下角标 https://theme-hope.vuejs.press/zh/guide/markdown/grammar/sup-sub.html | ||
// sup: true,// 上角标 https://theme-hope.vuejs.press/zh/guide/markdown/grammar/sup-sub.html | ||
tabs: true, // 选项卡 https://theme-hope.vuejs.press/zh/guide/markdown/content/tabs.html | ||
// vPre: true, // https://theme-hope.vuejs.press/zh/guide/markdown/others.html#gfm | ||
// revealJs: true, | ||
// 在启用之前安装 chart.js | ||
// chart: true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
title: 后端笔记 | ||
icon: server | ||
date: 2022-03-01 | ||
article: false | ||
index: false | ||
--- | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
title: CORS | ||
date: 2023-05-20 | ||
icon: cors | ||
order: 3 | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
title: Express | ||
date: 2023-05-25 | ||
icon: express | ||
order: 2 | ||
--- | ||
|
||
## 基于 Nodejs 实践 | ||
|
||
安装: | ||
```shell | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
title: JWT | ||
date: 2023-06-20 | ||
icon: jsonwebtoken | ||
order: 4 | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
title: SQL语句 | ||
date: 2022-03-01 | ||
icon: sql | ||
order: 1 | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ title: 常用命名单词 | |
date: 2020-03-01 | ||
category: | ||
- 英语单词 | ||
icon: collection | ||
--- | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ title: 英语学习疑难记录 | |
date: 2020-03-01 | ||
category: | ||
- 英语单词 | ||
icon: difficult | ||
--- | ||
|
||
<!-- more --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ article: false | |
--- | ||
|
||
|
||
- [Tauri](./tauri/README.md) | ||
- [Electron](./electron/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
--- | ||
title: Tauri桌面端开发技术 | ||
icon: tauri | ||
title: tauri | ||
date: 2023-06-01 | ||
index: false | ||
article: false | ||
|
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: electron | ||
date: 2023-05-25 | ||
index: false | ||
article: false | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.