How to organize navigation (the left sidebar) by category without the remainder being placed in a default "Other" category? #2656
Labels
enhancement
Improved functionality
good first issue
Easier issue for first time contributors
help wanted
Contributions are especially encouraged
Milestone
Search terms
navigation, category, default category
Question
I'm trying to use the "navigation" > "includeCategories" option in typedoc.json to organize the left nav bar. When I use the "@category" tag within my doc comments, the reflections are correctly placed under those categories in the navigation, but everything else is placed under a default category called "Other". How do I disable this default categorization and allow any uncategorized reflections to just remain where they are?
I'm not sure how clear my question is, so here is an example: Suppose I have a module named colors.ts which has 6 interfaces named
Red
,Orange
,Yellow
,Green
,Blue
, andPurple
and 1 class namedColor
. By default, once the documentation is generated, all 7 would be listed straight under "colors". If I then applied "@category Warm" to the first 3 interfaces and "@category Cool" to the latter 3 interfaces in their doc comments, I want the navigation layout to look something like this:Instead, it looks like this:
The text was updated successfully, but these errors were encountered: