rwutscher
2023-09-19 27a6087dd5a25dd5031b86b9917adde6ef4b211a
docs/features/explorer.md
@@ -152,7 +152,7 @@
  filterFn: (node) => {
    // set containing names of everything you want to filter out
    const omit = new Set(["authoring content", "tags", "hosting"])
    return omit.has(node.name.toLowerCase())
    return !omit.has(node.name.toLowerCase())
  },
})
```