File tree Expand file tree Collapse file tree 6 files changed +17
-16
lines changed
Expand file tree Collapse file tree 6 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ export default defineConfig({
5555 md . use ( mathjax3 ) ;
5656 md . use ( taskLists ) ;
5757 const orig = md . renderer . rules . link_open ! ;
58- md . renderer . rules . link_open = function ( tokens , idx , ...args ) {
58+ md . renderer . rules . link_open = ( tokens , idx , ...args ) => {
5959 const token = tokens [ idx ] ;
6060 const href = token . attrGet ( 'href' ) ! ;
6161 if ( ! / : \/ \/ / . test ( href ) && ! / (?: \. h t m l | \/ ) $ / . test ( href ) ) {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const bugsSidebar: SidebarType[] = [
2121 {
2222 icon : webIcon ,
2323 text : '前端' ,
24- collapsed : true ,
24+ collapsed : false ,
2525 items : [
2626 {
2727 icon : htmlIcon ,
@@ -91,7 +91,7 @@ const bugsSidebar: SidebarType[] = [
9191 {
9292 icon : editorIcon ,
9393 text : '编辑器' ,
94- collapsed : true ,
94+ collapsed : false ,
9595 items : [
9696 {
9797 icon : androidStudioIcon ,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const learnSidebar: SidebarType[] = [
3232 {
3333 icon : webIcon ,
3434 text : '前端' ,
35- collapsed : true ,
35+ collapsed : false ,
3636 items : [
3737 {
3838 icon : conceptIcon ,
@@ -99,7 +99,7 @@ const learnSidebar: SidebarType[] = [
9999 {
100100 icon : rearEndIcon ,
101101 text : '后端' ,
102- collapsed : true ,
102+ collapsed : false ,
103103 items : [
104104 {
105105 icon : javaIcon ,
@@ -131,7 +131,7 @@ const learnSidebar: SidebarType[] = [
131131 {
132132 icon : sqlIcon ,
133133 text : '数据库' ,
134- collapsed : true ,
134+ collapsed : false ,
135135 items : [
136136 {
137137 icon : mySQLIcon ,
@@ -144,7 +144,7 @@ const learnSidebar: SidebarType[] = [
144144 {
145145 icon : deployIcon ,
146146 text : '部署' ,
147- collapsed : true ,
147+ collapsed : false ,
148148 items : [
149149 {
150150 icon : dockerIcon ,
@@ -157,7 +157,7 @@ const learnSidebar: SidebarType[] = [
157157 {
158158 icon : versionControlIcon ,
159159 text : '版本控制' ,
160- collapsed : true ,
160+ collapsed : false ,
161161 items : [
162162 {
163163 icon : gitIcon ,
@@ -203,7 +203,7 @@ const learnSidebar: SidebarType[] = [
203203 {
204204 icon : editorIcon ,
205205 text : '编辑器' ,
206- collapsed : true ,
206+ collapsed : false ,
207207 items : [
208208 {
209209 icon : ideaIcon ,
Original file line number Diff line number Diff line change 1616 "dayjs" : " ^1.11.13" ,
1717 "element-plus" : " ^2.9.5" ,
1818 "floating-vue" : " ^5.2.2" ,
19+ "hls.js" : " ^1.5.20" ,
1920 "lodash-es" : " ^4.17.21" ,
2021 "markdown-it-mathjax3" : " ^4.3.2" ,
2122 "markdown-it-task-lists" : " ^2.1.1" ,
Original file line number Diff line number Diff line change 5353 v-for =" project in list"
5454 :key =" project.name"
5555 class =" relative rounded-2 p-3 bg-white transform transition-all transition-250"
56- hover =" shadow-emerald shadow-md transition-all transition-250"
57- border =" ~ solid .25 gray-300 dark:gray-700"
58- shadow =" sm gray"
56+ un- hover =" shadow-emerald shadow-md transition-all transition-250"
57+ un- border =" ~ solid .25 gray-300 dark:gray-700"
58+ un- shadow =" sm gray"
5959 dark =" bg-#2c2e2f shadow-neutral"
6060 >
6161 <div class =" relative" >
7676 {{ project.name }}
7777 </strong >
7878 <div
79- class =" line-clamp-2 h-8 whitespace-pre-wrap"
80- un-text =" gray-400 .85em !"
79+ class =" line-clamp-2 h-8 line-height-4 whitespace-pre-wrap"
80+ un-text =" gray-400 .875em !"
8181 line-height-3.75
8282 :title =" project.description"
8383 >
8686 </div >
8787 </div >
8888 <div class =" mt-2 flex justify-between" >
89- <div class =" flex items-center justify-start gap-2" >
89+ <div class =" flex flex-wrap items-center justify-start gap-2" >
9090 <ElTag
9191 v-for =" tag in project.type"
9292 :key =" tag"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ docker pull nginx
2323```
2424
2525如果超时,可以先配置一下国内镜像,这里有教程
26- [ 点击查看] ( ../learn/deploy/docker/docker_configure_domestic_image )
26+ [ 点击查看] ( ../learn/deploy/docker/docker_configure_domestic_image ) {target= _ blank}
2727
2828## 第二步:docker 创建共同网络
2929
You can’t perform that action at this time.
0 commit comments