-
Notifications
You must be signed in to change notification settings - Fork 1
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 1ceafc1
Showing
27 changed files
with
1,674 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,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
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 @@ | ||
shamefully-hoist=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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# platform | ||
.github | ||
.husky | ||
.settings | ||
.vercel | ||
.vscode | ||
|
||
# Ignore artifacts: | ||
build | ||
coverage | ||
dist | ||
node_modules | ||
out | ||
|
||
# Ignore all HTML files: | ||
*.html | ||
|
||
# lib | ||
*.min.js | ||
/pnpm-lock.yaml |
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 @@ | ||
{ | ||
"semi": 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,13 @@ | ||
# zhi | ||
|
||
一款知乎风格的思源笔记主题 | ||
|
||
## 核心特色 | ||
|
||
- 完全模仿知乎风格 | ||
- 整合热门挂件以及其他小工具,提供统一的入口 | ||
- 天生支持插件系统 | ||
|
||
## 感谢 | ||
|
||
感谢 [zuoez02](https://github.com/zuoez02/siyuan-plugin-system) 提供的插件系统 |
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,38 @@ | ||
<!-- | ||
~ Copyright (c) 2023, Terwer . All rights reserved. | ||
~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
~ | ||
~ This code is free software; you can redistribute it and/or modify it | ||
~ under the terms of the GNU General Public License version 2 only, as | ||
~ published by the Free Software Foundation. Terwer designates this | ||
~ particular file as subject to the "Classpath" exception as provided | ||
~ by Terwer in the LICENSE file that accompanied this code. | ||
~ | ||
~ This code is distributed in the hope that it will be useful, but WITHOUT | ||
~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
~ version 2 for more details (a copy is included in the LICENSE file that | ||
~ accompanied this code). | ||
~ | ||
~ You should have received a copy of the GNU General Public License version | ||
~ 2 along with this work; if not, write to the Free Software Foundation, | ||
~ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
~ | ||
~ Please contact Terwer, Shenzhen, Guangdong, China, youweics@163.com | ||
~ or visit www.terwer.space if you need additional information or have any | ||
~ questions. | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link href="/vite.svg" rel="icon" type="image/svg+xml" /> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport" /> | ||
<title>Vite + React + TS</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script src="/src/main.tsx" type="module"></script> | ||
</body> | ||
</html> |
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,26 @@ | ||
{ | ||
"name": "zhi", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"sass": "^1.58.3" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "16.11.7", | ||
"@types/react": "^18.0.27", | ||
"@types/react-dom": "^18.0.10", | ||
"@vitejs/plugin-react-swc": "^3.0.0", | ||
"glob": "^8.1.0", | ||
"prettier": "^2.8.4", | ||
"typescript": "^4.9.3", | ||
"vite": "^4.1.0" | ||
} | ||
} |
Oops, something went wrong.