This repository was archived by the owner on May 30, 2020. It is now read-only.

Description
I've been trying to figure out how I would go about creating nested modules with angular-jsdoc, but I'm coming up a bit dry. For example, a file structure like so:
app-module.js --
###########|
###########|----app-submodule-module.js
###########|##############|
###########| ##############|--app-submodule-config.js
###########|
###########|---app-submodule2-module.js
(pardon the #'s, I'm not sure how to make a nice file tree in markdown comments)
etc. etc. how would I represent such a hierarchy? I've tried having app.js have the following for docs:
`
/**
**/
`
And then the submodules be:
`
/**
but it creates a structure as you can see in the following image:

Any help would be hugely appreciated! And just to be extra clear, I'm curious if there is a way to do multiple-nested items (a la: a 'tree' structure for the documentation)