I'm trying to create a js doc file which will create single Index.html file that contains all the function details. I already used jsdoc and added the comments on the function which will be a part of the doc. but the problem is that it will create bunch of supporting file (style,script and other css files) to render the index.html file. And I just need to push this files all the time into git repo to maintain the latest version of the doc.
Is there any optimized way to achieve this? I just thought to implement the jsdoc as single index.html file which contains all the function details instead of creating bunch of supporting file file (Script,Style,font and each js file represent as individual html file), and pushing all the files into the git repo, and this makes really hard for PR review and approve activity.
Sample Screenshot: