-
|
So I'd like to organize items by the file they are defined in but my library uses a single For now I am considering using Is there an intended way to achieve this? Maybe a good option would be to add a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
TypeDoc's default theme really isn't intended to support multiple classes/functions/types/interfaces in a single output file, which is reflected by the router options available today. As typedoc-plugin-markdown does support this, I think for now I'd recommend making this a feature request there, it'd be nice if typedoc could do that, but that's not a super easy thing to do unfortunately. You could in theory also write a plugin to re-arrange the module structure so that it mirrors file structures... that'd be kind of messy, but that combined with the structure router would probably be the easiest way to do this (that doesn't involve multiple entry points) |
Beta Was this translation helpful? Give feedback.
TypeDoc's default theme really isn't intended to support multiple classes/functions/types/interfaces in a single output file, which is reflected by the router options available today. As typedoc-plugin-markdown does support this, I think for now I'd recommend making this a feature request there, it'd be nice if typedoc could do that, but that's not a super easy thing to do unfortunately.
You could in theory also write a plugin to re-arrange the module structure so that it mirrors file structures... that'd be kind of messy, but that combined with the structure router would probably be the easiest way to do this (that doesn't involve multiple entry points)