I use the grunt module grunt-ngdocs and this is the code that creates the documentation.
ngdocs: {
all: app_files,
scripts: ['angular.js']
}
I have a module called a starter and two controllers: controllerA, controllerB
When starting the documentation generator, these controllers are displayed as modules.
How to write it in the ngdoc markup that both of them are connected to the module starter?
contollerA and controllerB are in different files.
source
share