Skip to content

Commit b02135f

Browse files
committed
2 parents fa6d8b2 + 231a5b4 commit b02135f

21 files changed

Lines changed: 1207 additions & 560 deletions
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Place your blog.eleven.net.cn 工作区 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
3+
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
4+
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
5+
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
6+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
7+
// Placeholders with the same ids are connected.
8+
// Example:
9+
"Print to console": {
10+
"scope": "javascript,typescript,md,markdown",
11+
"prefix": "define",
12+
"body": [
13+
"export default defineComponent<Options>({",
14+
" $1",
15+
"});\n",
16+
],
17+
"description": "defineComponent"
18+
}
19+
}

README.md

Lines changed: 12 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -4,91 +4,45 @@ https://blog.eleven.net.cn/
44

55
## Command
66

7-
- 新建文章(指定嵌套的文件夹、文件名及文章标题)
7+
- Create new post
88

99
```bash
1010
npx hexo new "[post_title]" -p [folder_path/file_name.md]
1111
```
1212

13-
- post_title 文章标题
14-
- folder_path 文章所在文件夹
15-
- file_name 文章文件名
16-
17-
- 本地调试
13+
- Development
1814

1915
```bash
2016
yarn serve
2117
```
2218

23-
- 部署发布
19+
- ~~Build & Deploy~~ Replace with GitHub Actions
2420

2521
```bash
26-
yarn release # 编译 & 部署
27-
```
28-
29-
- 其它
30-
31-
```bash
32-
yarn build # 编译
33-
yarn clean # 清空编译结果
34-
yarn deploy # 部署(到 github pages)
22+
yarn release
3523
```
3624

3725
## Contents
3826

3927
```bash
4028
blog
41-
├── .deploy_git/ # deploy 部署目录
29+
├── .deploy_git/ # deploy folder
4230
├── node_modules/
43-
├── public/ # 编译结果目录
44-
├── scaffolds/ # 模版
45-
├── src/ # 文章书写
46-
│ ├── _posts/ # 文章
31+
├── public/ # build dest
32+
├── scaffolds/ # template
33+
├── src/
34+
│ ├── _posts/
4735
48-
├── themes/ # 主题
36+
├── themes/
4937
50-
├── _config.yml # hexo 基础配置
38+
├── _config.yml # hexo config
5139
├── .gitignore
5240
├── db.json
5341
├── package.json
5442
├── README.md
5543
├── yarn.lock
5644
```
5745

58-
## Quick Start About Hexo
46+
## About Hexo
5947

6048
Welcome to [Hexo](https://hexo.io/)! This is your very first post. Check [documentation](https://hexo.io/docs/) for more info. If you get any problems when using Hexo, you can find the answer in [troubleshooting](https://hexo.io/docs/troubleshooting.html) or you can ask me on [GitHub](https://github.com/hexojs/hexo/issues).
61-
62-
> 更详细的 Hexo 命令行说明,请前往:https://hexo.io/zh-cn/docs/commands
63-
64-
### Create a new post
65-
66-
```bash
67-
$ npx hexo new "My New Post"
68-
```
69-
70-
More info: [Writing](https://hexo.io/docs/writing.html)
71-
72-
### Run server
73-
74-
```bash
75-
$ npx hexo server
76-
```
77-
78-
More info: [Server](https://hexo.io/docs/server.html)
79-
80-
### Generate static files
81-
82-
```bash
83-
$ npx hexo generate
84-
```
85-
86-
More info: [Generating](https://hexo.io/docs/generating.html)
87-
88-
### Deploy to remote sites
89-
90-
```bash
91-
$ npx hexo deploy
92-
```
93-
94-
More info: [Deployment](https://hexo.io/docs/one-command-deployment.html)

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,9 @@
3939
"gitmoji-cli": "^3.2.4",
4040
"hexo-deployer-git": "^2.1.0",
4141
"hexo-generator-search": "^2.4.0"
42+
},
43+
"volta": {
44+
"node": "14.21.3",
45+
"yarn": "1.22.19"
4246
}
4347
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 应用渲染和打包
3+
date: 2025-04-17 10:49:33
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 组件模板 (区块)
3+
date: 2025-04-17 10:46:33
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 数据源
3+
date: 2025-04-17 10:48:32
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 公共依赖按需编译
3+
date: 2025-04-17 11:13:56
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---

src/_drafts/lowcode/core/i18n.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 多语言国际化
3+
date: 2025-04-17 09:10:26
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 实时预览
3+
date: 2025-04-17 14:12:31
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 低代码核心实现 - 组件递归嵌套渲染
3+
date: 2025-04-17 10:27:02
4+
category: LowCode
5+
tags: [LowCode]
6+
cover:
7+
---

0 commit comments

Comments
 (0)