Description
Hi @bkeepers
Following the merge of PR #343, everything has been working great, but there is a new issue that has come up. If a repository contains both a README.Rmd
and a README.md
, GitHub now shows README.Rmd
. I'm sure you have some mechanism in place to handle which file to choose when repos contain multiple README files/formats.
Example: https://github.com/ropensci/git2r
Here you see the raw, unparsed Rmd is shown by default, when in fact the parsed README is what needs to be displayed.
So if I were to have README.md
, README.rst
and README.txt
(same repo and same folder), how is the order determined?
If it is possible to set the order, README.md
should always be displayed over README.Rmd
since the latter contains unparsed code. The purpose of having both files in the same folder is so that with each software update, the author can parse the Rmd
file and have the most up to date code rendered into the README.md
.
I apologize if this issue needs to go elsewhere so please close and open in the right repo.
Thank you.