This was answered by @sebastian-lenz in #149.
The quick fix is to add a .nojekyll file to the root directory of your generated docs. Full documentation can be found here.
Duplicate of #149
Thanks for pointing that out @phillip-elm
@phillip-elm solution still works
Also adding a config.yml works:
include:
- "_*_.html"
- "_*_.*.html"
I found that with my latest trial, .nojekyll doesn't display modules/* pages. However, using the config.yml approach works perfectly.
@yukipastelcat going to the link and clicking on the class name works for me. I'd recommend clearing your cache.
Is there a way to automatically add the .nojekyll file to the documentation build output folder using the typedoc command? It gets deleted every time I rebuild the docs and I have to manually re-add it.
EDIT: Went with the above comment's solution using _config.yml with the included underscore prepended files. Be sure to spell the file name correctly and put it in your root folder (which is where I set my GH pages to live, NOT the docs folder).
Most helpful comment
Also adding a config.yml works:
I found that with my latest trial, .nojekyll doesn't display modules/* pages. However, using the config.yml approach works perfectly.