I am generating docs of my module `foo` using the following command:
nim doc --out:html --project src/foo.nim
Run
It generates html docs in the directory `out` with `out/foo.html` as the main
html file. When I deploy `foo` on github pages, nothing shows up there because
github pages accept `index.html` to be the starting point and it can't be found.
Is there a way to change `out/foo.html` to `out/index.html` using a command
line switch?
Currently, I am manually moving `out/foo.html` to `out/index.html`.