The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix explorernode references (closes #1985)

+2 -4
+2 -4
docs/features/explorer.md
··· 43 43 - Removing explorer: remove `Component.Explorer()` from `quartz.layout.ts` 44 44 - (optional): After removing the explorer component, you can move the [[table of contents | Table of Contents]] component back to the `left` part of the layout 45 45 - Changing `sort`, `filter` and `map` behavior: explained in [[#Advanced customization]] 46 - - Component: 47 - - Wrapper (Outer component, generates file tree, etc): `quartz/components/Explorer.tsx` 48 - - Explorer node (recursive, either a folder or a file): `quartz/components/ExplorerNode.tsx` 46 + - Component: `quartz/components/Explorer.tsx` 49 47 - Style: `quartz/components/styles/explorer.scss` 50 48 - Script: `quartz/components/scripts/explorer.inline.ts` 51 49 ··· 188 186 > and passing it in. 189 187 > 190 188 > ```ts title="quartz.layout.ts" 191 - > import { Options } from "./quartz/components/ExplorerNode" 189 + > import { Options } from "./quartz/components/Explorer" 192 190 > 193 191 > export const mapFn: Options["mapFn"] = (node) => { 194 192 > // implement your function here