Open
Description
GitHub pages are a common way to host documentation for sites. They require one of the following to host in source code:
- master branch /docs folder
- master branch
- gh-pages branch
Right now I'm using master branch /docs for pygdbmi, and I have what I would assume is a very common project structure, yet my workflow has a little hack in it. I generate my docs with the following make recipe:
docs:
pdoc --html --force --output-dir docs pygdbmi
mv docs/pygdbmi/* docs
rmdir docs/pygdbmi
Is there a way to generate docs directly to the --output-dir? By namespacing it with the package name, it breaks it for GitHub pages.