What I'd like to do is in the master branch of my github repo, have a /docs directory which within it, has a sphinx project. I'd like to be able to update the docs with only a cd docs and make html. Github pages doesn't allow you to choose arbitrary directories, otherwise I would set github pages to use /docs/build/html.
My principal question is: is it possible to use the command make html without creating a new html folder, but dump all the files in the directory specified by the BUILDDIR variable in the Makefile? Is there an option in SPHINXBUILD which will let me do this?
My more general question is: how do people in practice using github pages (from master branch, /docs folder) set up sphinx? I can't seem to find documentation of anyone trying to accomplish this, and the documentation to do related things (e.g. using a gh-pages branch) seems kind of out of date.
Thanks!
It's generally disputable whether committing build results is elegant.
This question aside, here's a solution:
In your project config, choose to use the docs folder for your GitHub Pages.
Change the Sphinx build directory in your Makefilefor example as follows:
BUILDDIR = .
In my attempts, I couldn't keep _build, probably because GitHub Pages didn't like the underscore _ prefix.
In the docs folder, create an index.html file and redirect to ./html/index.html (or whatever build directory you have configured, for example like this:
<meta http-equiv="refresh" content="0; url=./html/index.html" />
Note there are probably more elegant/backwards-compatible/SEO-friendly ways to handle redirects.
Sorry, this is a bug tracker of Sphinx, not a forum.
Please move https://groups.google.com/forum/#!forum/sphinx-users .
BTW, I feel BUILDDIR = . is dangerous. It causes documents lost by make clean...
So I recommend to use BUILDDIR = build/ or other directories (not having underscores).
Please let me know if you get a good way to do that. I will add it to our document.
Thanks,
Sorry @tk0miya ! Thanks @TimKam ! The redirect idea was what I was missing.
Update of @TimKam
This worked fine for me.
Create a folder docs in the root path.
By default, Jekyll does not build any files or directories with underscore. Include an empty .nojekyll file in the docs folder to turn off Jekyll.
In the docs folder, create an index.html file and redirect to ./html/index.html for example like this:
<meta http-equiv="refresh" content="0; url=./html/index.html" />
BUILDDIR = docs
Run make html then add, commit and push the repo.
In your project config, choose to use the docs folder for your GitHub Pages.
visit https://<username>.github.io/<repo>
Sorry to bump an old issue but.... I am currently using @suhailvs (Tysm ^_^) method and it's working fine like GitHub docs are being built like this: https://ritabratamaiti.github.io/RapidML and the readthedocs page is working fine too: https://rapidml.readthedocs.io/en/latest/
The only issue right now is how SEO friendly is the redirect method, like will search engine bots follow through the links and if not how to solve the issue....
We use the method detailed by @suhailvs (Thank you!) and it works fine as well. With respect to the question of SEO when we publish links to the documentation we do not use the https://
That way web crawlers should go directly to the sphinx pages without the redirect. The redirect as given in the last step by @suhailvs is simply a convenience step for people used to the jekyll way of doing things.
@suhailvs Thanks! I only:
.nojekyll <meta http-equiv="refresh" content="0; url=./build/html/index.html" />And I don't need to do anything else, just make html. It works like a charm.
update of @wxianxin
.nojekyll file in the root folder to turn off Jekyll.index.html file in the root folder with contents:<meta http-equiv="refresh" content="0; url=./_build/html/index.html" />make html then add, commit and push the repo.master branch.https://<username>.github.io/<repo>Can we please reopen this issue?
I realise it was previously closed per not being a forum, though isn't there a legitimate case for providing the option to build the HTML to a specific directory for compatibility with GitHub pages?
Having just spent a lot of time trying to get Sphinx documentation to render correctly on Github Pages before belatedly discovering the working procedure described above by @suhailvs, I would support the call to re-open this issue until it is resolved by updating the documentation and upgrading the currently ineffective 芦githubpages禄 extension.
Reopened. But I don't understand what I should do. Can anyone send a PR for this?
I will try to help.
Hey, idk if this is any better, or maybe even worse than the redirect approach, but another option that worked for me...
docsrc and docs.docsrc, initialize sphinx.docsrc/_build/ to your .gitignoredocsrc/Makefile
github:
@make html
@cp -a _build/html/. ../docs
make github from the docsrc directory to generate the docs and move them to where GitHub wants them.This approach also helps to avoid committing other build artifacts that you may not want to commit, like the doctrees pickle files.
@jason-huling ,
By adding the github option in the Makefile, running make github throws me the following error:
Running Sphinx v2.0.1
Sphinx error:
Builder name github not registered or available through entry point
How did you address this error?
So I figured out: if you are on Windows, then you should edit your make.bat rather than your Makefile and add:
if "%1" == "github" (
%SPHINXBUILD% -M html %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
robocopy %BUILDDIR%/html ../docs /E > nul
echo.Generated files copied to ../docs
goto end
)
After the following line:
if "%1" == "" goto help
And then you can enter make github, which will be equivalent to make html and then copy generated files into ../docs
Most helpful comment
Update of @TimKam
This worked fine for me.
Create a folder docs in the root path.
By default, Jekyll does not build any files or directories with underscore. Include an empty
.nojekyllfile in thedocsfolder to turn off Jekyll.In the docs folder, create an
index.htmlfile and redirect to./html/index.htmlfor example like this:<meta http-equiv="refresh" content="0; url=./html/index.html" />BUILDDIR = docsRun
make htmlthen add, commit and push the repo.In your project config, choose to use the docs folder for your GitHub Pages.
visit
https://<username>.github.io/<repo>