Names starting with underscore shows errors Page doesnot exists for gh-pages branch

Viewed 3975

I have an issue with gh-pages of github. The html pages which start with _ ( underscore ) shows the error.

Page does not exist! Read the Full Documentation
Instructions for setting up username.github.com and stuffs.

For eg : Lets take an example

https://github.com/harikt/docs/blob/gh-pages/api/Aura.Di/_src.html

is the source

It should render at http://harikt.github.com/docs/api/_src.html

But currently its not. It only happens for the names starting with _ ( underscore ). Let me know if anyone have the same issue or can it be resolved without renaming it ?

2 Answers

Yes, had the same issue. Doxygen generates some files with underscore prefix.

To enable the rendering of _*.html pages on gh-pages you might add this to your Jekyll _config.yml:

include:
  - "_*.html"
Related