-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[enhancement wish] common nav for all html pages #75
Comments
With some clues about how to achieve this I can try to make a PR. |
I guess the way to go about this would be
I think that is bout it :) |
Thanks for these detailed clues. I'll try to add a new config option "iframeNav" and handle it in templates. If it works as I want I'll make a PR. |
After a big delay I made it : #95 It's not an iframe, really easier fetching html code and add it directly in the page (included html should be in browser cache after the first page display) |
Hi,
On a quite big js project, generated documentation is 1224 files of 2Mo each (2,3Go). It's because the
part has a weight of 1.9Mo.Having only one
<nav>
content for all files could reduce a lot the total weight, here around 200 times less (1224×2000
vs1900 + 1224×100
, in my case from 2.3Go to ~125Mo).It could be done with a frameset, or an ajax call to populate the nav bar in each html page (the nav.html will be in the browser cache after the first call).
Is such an enhancement can be put on the roadmap ?
BTW, thanks a lot for this great template.
The text was updated successfully, but these errors were encountered: