minearm-website 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/LICENSE.md +21 -21
  2. package/README.md +11 -7
  3. package/astro.config.ts +37 -37
  4. package/package.json +63 -63
  5. package/public/13.jpg +0 -0
  6. package/public/scripts/mdata.json +3 -3
  7. package/public/scripts/searchData.json +47 -0
  8. package/src/components/loading/loading.vue +1 -1
  9. package/src/content/blog/Extended Search.md +50 -0
  10. package/src/content/blog/Mail.md +15 -0
  11. package/src/content/blog/history//350/277/221/344/273/243/347/257/207//344/270/255/345/233/275/345/205/261/344/272/247/345/205/232/345/205/232/345/217/262.md +2361 -2361
  12. package/src/content/config.ts +1 -0
  13. package/src/layouts/BaseLayout.astro +0 -1
  14. package/src/layouts/DefaultMdLayout.astro +0 -4
  15. package/src/layouts/HomeLayout.astro +0 -2
  16. package/src/layouts/TagsLayout.astro +0 -1
  17. package/src/pages/404.md +1 -2
  18. package/src/pages/about/index.md +11 -7
  19. package/src/pages/blog/[...slug].astro +1 -1
  20. package/src/pages/categories/index.astro +2 -2
  21. package/src/pages/friends/index.md +3 -3
  22. package/src/pages/tags/index.astro +3 -2
  23. package/src/styles/blog/dist/blog.css +59 -0
  24. package/src/styles/blog/dist/code.css +59 -0
  25. package/src/styles/blog/dist/index.css +1 -0
  26. package/src/styles/blog/dist/post.css +246 -0
  27. package/src/styles/components/dist/footer.css +29 -0
  28. package/src/styles/components/dist/index.css +1 -0
  29. package/src/styles/components/dist/page-content.css +60 -0
  30. package/src/styles/dist/animation.css +8 -0
  31. package/src/styles/dist/custom.css +10 -0
  32. package/src/styles/dist/global.css +1095 -0
  33. package/src/styles/dist/mixin.css +0 -0
  34. package/src/theme_config.ts +5 -6
  35. package/src/components/Search.astro +0 -30
  36. package/src/components/icons/game.astro +0 -10
  37. package/src/components/postlist/postsList.astro +0 -57
  38. package/src/lib/posts.js +0 -21
@@ -139,7 +139,7 @@ document.onreadystatechange = async () => {
139
139
  filter: drop-shadow(0 0 10px yellow);
140
140
  animation-delay: -0.5s;
141
141
  }
142
- .load :last-child {
142
+ .load :last-child {
143
143
  background: #99ff00;
144
144
  border: 5px solid #99ff00;
145
145
  filter: drop-shadow(0 0 10px #99ff00);
@@ -0,0 +1,50 @@
1
+ ---
2
+ title: Extended Search
3
+ description: '关于Minearm-RPM & Website所使用的fusejs的扩展搜索语法'
4
+ heroColor: ''
5
+ pubDate: 2024-09-25
6
+ abbrlink: Search-help
7
+ cover: "/help1.png"
8
+ coverAlt: "help1"
9
+ tags:
10
+ - 'localSearch'
11
+ - 'Extended Search'
12
+ category: 'Help'
13
+ ---
14
+
15
+ ## Extended Search
16
+
17
+ This site uses [fusejs](https://www.fusejs.io) to provide local search services, allowing you to use extended search - a search format that can fine-tune search results, similar to:color[unix]{color="green"}
18
+
19
+ Space represents logical `AND`, pipe symbol | represents logical `OR`, and to escape spaces, use double quotes `""`.
20
+
21
+ | **Token** | **Match type** | **Description** |
22
+ | ----------- | -------------------------- | -------------------------------------- |
23
+ | `jscript` | fuzzy-match | Items that fuzzy match `jscript` |
24
+ | `=scheme` | exact-match | Items that are `scheme` |
25
+ | `'python` | include-match | Items that include `python` |
26
+ | `!ruby` | inverse-exact-match | Items that do not include `ruby` |
27
+ | `^java` | prefix-exact-match | Items that start with `java` |
28
+ | `!^earlang` | inverse-prefix-exact-match | Items that do not start with `earlang` |
29
+ | `.js$` | suffix-exact-match | Items that end with `.js` |
30
+ | `!.go$` | inverse-suffix-exact-match | Items that do not end with `.go` |
31
+
32
+ ## 扩展搜索
33
+
34
+ 本站使用[fusejs](https://www.fusejs.io)提供本地搜索服务,允许您使用扩展搜索——一种可以微调搜索结果的搜索格式,类似于:color[unix]{color="green"}
35
+
36
+ 空格代表逻辑与`AND`,管道符|代表逻辑或`OR`,如要转义空格请使用双引号`""`
37
+ | **令牌** | **匹配类型** | **描述** |
38
+ | ----------- | ---------------- | --------------------------- |
39
+ | `jscript` | 模糊匹配 | 与 `jscript` 模糊匹配的项目 |
40
+ | `=scheme` | 精确匹配 | 是 `scheme` 的项目 |
41
+ | `'python` | 包含匹配 | 包含 `python` 的项目 |
42
+ | `!ruby` | 反向精确匹配 | 不包含 `ruby` 的项目 |
43
+ | `^java` | 前缀精确匹配 | 以 `java` 开头的项目 |
44
+ | `!^earlang` | 反向前缀精确匹配 | 不以 `earlang` 开头的项目 |
45
+ | `.js$` | 后缀精确匹配 | 以 `.js` 结尾的项目 |
46
+ | `!.go$` | 反向后缀精确匹配 | 不以 `.go` 结尾的项目 |
47
+
48
+
49
+
50
+
@@ -0,0 +1,15 @@
1
+ ---
2
+ title: Mail
3
+ description: ''
4
+ pubDate: 2024-09-30
5
+ heroColor: ''
6
+ abbrlink: mail
7
+ cover: "/mail.png"
8
+ coverAlt: "mail"
9
+ tags:
10
+ - 'Tutorial'
11
+ category: 'Mail'
12
+ ---
13
+
14
+ ## Mali
15
+ minearm@minearm.org