I have a project together with several people and we have a README.md
file with a bunch of GitHub Flavored Markdown that is rendered on our GitHub page. We also set up a GitHub Pages branch which is hosted under our GitHub Organization's subdomain, and used the Automatic Page Generator simply loading in our README.md
file when we created our page. However, I notice that when I update our README.md
file, it does not update the project page. Instead, we must go to the GitHub settings tab and recreate the project page, reloading the README.md
file when we do it.
Also, after reading about relative linking working between documentation files on the GitHub project directory pages. I very much like the markdown as it saves tons of time from having to write all the HTML out by hand for our documentation. What I would like however is to be able to have one README.md
file which is able to include relative links to other documentation files located at docs/*.md
. I was hoping there was an easy solution so that my other documentation files might also be included in my gh-pages branch and be hosted under my GitHub Pages subdomain and be rendered and/or themed.
In other words, my questions are:
/docs/*.md
to my Github Pages and somehow rendering and/or theming them?