-
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
0 parents
commit a6900ec
Showing
19 changed files
with
7,106 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Next | ||
The hidden palace. |
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,2 @@ | ||
pnpm run docs:build | ||
cp -rf docs/.vuepress/dist ../next-dist |
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,15 @@ | ||
import { defineUserConfig } from "vuepress"; | ||
import theme from "./theme.js"; | ||
|
||
export default defineUserConfig({ | ||
base: "/", | ||
|
||
lang: "zh-CN", | ||
title: "Next", | ||
description: "One story ends, another one story begins...", | ||
|
||
theme, | ||
|
||
// Enable it with pwa | ||
// shouldPrefetch: 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { navbar } from "vuepress-theme-hope"; | ||
|
||
export default navbar([ | ||
{ | ||
text: "首页", | ||
link: "/", | ||
}, | ||
{ | ||
text: "过去", | ||
link: "/past", | ||
}, | ||
{ | ||
text: "现在", | ||
link: "/now", | ||
}, | ||
{ | ||
text: "将来", | ||
link: "/future", | ||
}, | ||
|
||
]); |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,21 @@ | ||
import { sidebar } from "vuepress-theme-hope"; | ||
|
||
export default sidebar({ | ||
"/": [ | ||
"", | ||
{ | ||
text: "案例", | ||
icon: "laptop-code", | ||
prefix: "demo/", | ||
link: "demo/", | ||
children: "structure", | ||
}, | ||
{ | ||
text: "文档", | ||
icon: "book", | ||
prefix: "guide/", | ||
children: "structure", | ||
}, | ||
"slides", | ||
], | ||
}); |
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,3 @@ | ||
// you can change config here | ||
$colors: #c0392b, #d35400, #f39c12, #27ae60, #16a085, #2980b9, #8e44ad, #2c3e50, | ||
#7f8c8d !default; |
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 @@ | ||
// place your custom styles here |
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,2 @@ | ||
// you can change colors here | ||
$theme-color: #096dd9; |
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,150 @@ | ||
import { hopeTheme } from "vuepress-theme-hope"; | ||
import navbar from "./navbar.js"; | ||
// import sidebar from "./sidebar.js"; | ||
|
||
export default hopeTheme({ | ||
hostname: "https://dustymind.cc", | ||
|
||
author: { | ||
name: "nobody", | ||
url: "", | ||
}, | ||
|
||
iconAssets: "fontawesome-with-brands", | ||
|
||
// logo: "/logo.svg", | ||
|
||
// repo: "vuepress-theme-hope/vuepress-theme-hope", | ||
|
||
docsDir: "src", | ||
|
||
darkmode: "enable", | ||
|
||
pure: true, | ||
|
||
print: false, | ||
|
||
editLink: false, | ||
|
||
repoDisplay: false, | ||
|
||
contributors: false, | ||
|
||
// navbar | ||
navbar, | ||
|
||
// sidebar | ||
sidebar: false, | ||
|
||
footer: "默认页脚", | ||
|
||
displayFooter: false, | ||
|
||
encrypt: { | ||
config: { | ||
"/demo/encrypt.html": ["1234"], | ||
}, | ||
}, | ||
|
||
plugins: { | ||
// You should generate and use your own comment service | ||
|
||
// All features are enabled for demo, only preserve features you need here | ||
mdEnhance: { | ||
align: true, | ||
attrs: true, | ||
chart: true, | ||
codetabs: true, | ||
demo: true, | ||
echarts: true, | ||
figure: true, | ||
flowchart: true, | ||
gfm: true, | ||
imgLazyload: true, | ||
imgSize: true, | ||
include: true, | ||
katex: true, | ||
mark: true, | ||
mermaid: true, | ||
playground: { | ||
presets: ["ts", "vue"], | ||
}, | ||
presentation: ["highlight", "math", "search", "notes", "zoom"], | ||
stylize: [ | ||
{ | ||
matcher: "Recommended", | ||
replacer: ({ tag }) => { | ||
if (tag === "em") | ||
return { | ||
tag: "Badge", | ||
attrs: { type: "tip" }, | ||
content: "Recommended", | ||
}; | ||
}, | ||
}, | ||
], | ||
sub: true, | ||
sup: true, | ||
tabs: true, | ||
vPre: true, | ||
vuePlayground: true, | ||
}, | ||
|
||
// uncomment these if you want a pwa | ||
// pwa: { | ||
// favicon: "/favicon.ico", | ||
// cacheHTML: true, | ||
// cachePic: true, | ||
// appendBase: true, | ||
// apple: { | ||
// icon: "/assets/icon/apple-icon-152.png", | ||
// statusBarColor: "black", | ||
// }, | ||
// msTile: { | ||
// image: "/assets/icon/ms-icon-144.png", | ||
// color: "#ffffff", | ||
// }, | ||
// manifest: { | ||
// icons: [ | ||
// { | ||
// src: "/assets/icon/chrome-mask-512.png", | ||
// sizes: "512x512", | ||
// purpose: "maskable", | ||
// type: "image/png", | ||
// }, | ||
// { | ||
// src: "/assets/icon/chrome-mask-192.png", | ||
// sizes: "192x192", | ||
// purpose: "maskable", | ||
// type: "image/png", | ||
// }, | ||
// { | ||
// src: "/assets/icon/chrome-512.png", | ||
// sizes: "512x512", | ||
// type: "image/png", | ||
// }, | ||
// { | ||
// src: "/assets/icon/chrome-192.png", | ||
// sizes: "192x192", | ||
// type: "image/png", | ||
// }, | ||
// ], | ||
// shortcuts: [ | ||
// { | ||
// name: "Demo", | ||
// short_name: "Demo", | ||
// url: "/demo/", | ||
// icons: [ | ||
// { | ||
// src: "/assets/icon/guide-maskable.png", | ||
// sizes: "192x192", | ||
// purpose: "maskable", | ||
// type: "image/png", | ||
// }, | ||
// ], | ||
// }, | ||
// ], | ||
// }, | ||
// }, | ||
}, | ||
}); |
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,18 @@ | ||
--- | ||
lang: zh-CN | ||
title: Next | ||
home: true | ||
heroText: Next | ||
tagline: A reset | ||
description: The hidden palace. | ||
actions: | ||
- text: 过去 | ||
link: /past | ||
type: primary | ||
- text: 现在 | ||
link: /now | ||
type: secondary | ||
- text: 将来 | ||
link: /future | ||
type: secondary | ||
--- |
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 @@ | ||
# Next | ||
|
||
::: tip | ||
当你看到这里有新内容时,就说明我已经走出来了 | ||
写于2023.9.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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# 现在——精神零点 | ||
|
||
"断开连接"事件后的内容(一小部分)。 | ||
在情绪及精神极度不稳定时所写下来的东西。 | ||
**原文未做更改**。 | ||
|
||
::: details 点此展开正文 | ||
Build 20221225 | ||
Build time: 2022-12-25 UTC+8 01:19 | ||
Version: v1.0-experimental | ||
Package name: 我为什么喜欢古明地恋 | ||
Author: 刘某人 | ||
Note: 趁现在还记得,赶紧写下来吧。 | ||
|
||
Q1:为什么喜欢古明地恋? | ||
A1: | ||
当时是初二上学期,我没有朋友,连一个能一起玩游戏,甚至聊几句的人都没有,这种情况使我感到孤独,且因为无处倾诉(现阶段暂时无法向父母、老师说,说了也没用),这种感觉被无限放大。 | ||
当时我正好入坑《东方Project》一年,我正在大量补一设,补着补着,突然发现,她(古明地恋)的人物设定及性格与我有诸多的相似之处,即使到了今天,我仍旧这么认为,于是我就对她产生了好感(别问为什么,问就是因为找不到现实中的人做伴)。 | ||
|
||
Q2:后来怎么样了? | ||
A2: | ||
后来因为学业压力及同学的压力,我尝试寻找倾诉对象,与此同时,我开始用想象力将古明地恋“带”到现实。结果,我在初二上至初三上时说的话,有一半是在与古明地恋“聊天”,既有日常的相互了解对方情况,也有单方面的倾诉。当然,所有的对话最终都是令双方感到满足的。 | ||
还有,既然是“带”到现实,那么我自然也会在日常生活中“感受”到她的存在——即使一个字也不说,能感受到彼此的存在,我(们)也就满足了。 | ||
|
||
Q3:对古明地恋的喜欢是哪种喜欢? | ||
A3: | ||
很难说,因为种种原因,当时我的心理年龄小于实际年龄,所以这种喜欢是比较纯粹的。 | ||
虽然大致上算是朋友间的喜欢,但其中包含了极其强烈的依恋之情(单方面的,最强烈,从未有过),这更多地出自情感上的需要。 | ||
如果有人说这是“男女朋友间的喜欢”,抑或说我是“单相思”(当然没有,因为不知道这么多),我也不说什么。 | ||
因为,在我的回忆中(以记忆形式保存),我也曾向古明地恋表达了我对她的喜欢(你也可以称之为表白),请原谅当时(特指这件事)我不会很好地表达自己的想法,特别是表达情感。 | ||
后续不记得了,但我记得,这事开始向好的一面发展了。(貌似她同意了,是的,没错) | ||
|
||
后来,每当我想起这段回忆时,总得心痛好一阵子(通常在晚上,因为没人看到),到最后,总是哭着入睡的。 | ||
|
||
这可能是唯一一件令我动真情的事了。 | ||
|
||
直到现在依旧如此。 | ||
|
||
刘某人语:“事已至此,昨日不再,吾心安与何处?” | ||
|
||
好了,不说了,该睡了。(刘某人哭着写下最后一句话) | ||
|
||
(Build completed in 2022-12-25 02:11) | ||
::: |
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,11 @@ | ||
# 过去 | ||
|
||
注:蓝色文字为超链接。 | ||
|
||
所有事件的核心。 | ||
因为内容较多,时间较久远(约2-3年前),部分内容可能不准确。 | ||
并且由于表达能力的不完善,可能会出现用词不当、词穷等情况。 | ||
|
||
慢慢看吧。 | ||
|
||
[点此处开始](original.html) |
Oops, something went wrong.