File tree Expand file tree Collapse file tree 4 files changed +14
-27
lines changed
Expand file tree Collapse file tree 4 files changed +14
-27
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -77,7 +77,9 @@ const config: QuartzConfig = {
7777 Plugin . Description ( ) ,
7878 Plugin . Latex ( { renderEngine : "katex" } ) ,
7979 ] ,
80- filters : [ Plugin . RemoveDrafts ( ) ] ,
80+ filters : [
81+ Plugin . RemoveDrafts ( ) ,
82+ ] ,
8183 emitters : [
8284 Plugin . AliasRedirects ( ) ,
8385 Plugin . ComponentResources ( ) ,
Original file line number Diff line number Diff line change @@ -52,14 +52,16 @@ export const defaultContentPageLayout: PageLayout = {
5252 { Component : Component . DesktopOnly ( Component . ReaderMode ( ) ) } ,
5353 ] ,
5454 } ) ,
55- // Component.Explorer(),
5655 Component . Explorer ( {
57- mapFn : ( node ) => {
58- if ( node . isFolder ) {
59- node . displayName = "📁 " + node . displayName
60- }
61- } ,
56+ folderClickBehavior : "collapse"
6257 } ) ,
58+ // Component.Explorer({
59+ // mapFn: (node) => {
60+ // if (node.isFolder) {
61+ // node.displayName = "📁 " + node.displayName
62+ // }
63+ // },
64+ // }),
6365 // Component.RecentNotes({ limit: 5}),
6466 ] ,
6567 right : [
@@ -86,15 +88,10 @@ export const defaultListPageLayout: PageLayout = {
8688 { Component : Component . DesktopOnly ( Component . ReaderMode ( ) ) } ,
8789 ] ,
8890 } ) ,
89- // Component.Explorer(),
9091 Component . Explorer ( {
91- mapFn : ( node ) => {
92- if ( node . isFolder ) {
93- node . displayName = "📁 " + node . displayName
94- }
95- } ,
96- } ) ,
97- // Component.RecentNotes({ limit: 5 }),
92+ folderClickBehavior : "collapse"
93+ }
94+ ) ,
9895 ] ,
9996 right : [ ] ,
10097}
You can’t perform that action at this time.
0 commit comments