I am currently working on documenting my Angular WebApp using ngdocs and grunt. I am facing a challenge with the complexity of my routing system and feel that it needs more attention in terms of documentation.
Is there a way to document the route configuration at different levels such as controllers and factories?
Can I include it at a deeper level like this:
/**
* @ngdoc controller
* @name shippingSolutionApp.controller:MainCtrl
* @description
* # MainCtrl
* <strong>PAGE LEVEL CONTROLLER:</strong> This is a page level controller.
*
* This is an empty controller for the shippingSolutionApp. Any necessary business logic to initialize the app should be placed here as needed.
*
* This controller handles the initialization process for both the Admin Dashboard and User Dashboard sub-child WebApps.
* @requires
* $scope
*/
Thank you, Ankit