-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Allow index.md files as index pages #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Until now, only `README.md` files got treated as a directory index. This commit also allows `index.md` to be used as index files.
Hmm... I like this, but wouldn't it be better if index page was configurable. Something like "index" key in config.js? |
I think index/readme are good enough. Sometimes fewer options is better... |
index/readme md file rendered on gitlab/github repository home page by default. @filipsobol 's suggestion is good! vuepress index page can be configurable in config.js, like index key. |
I'm confused, is there a way to use |
The default file seems to be chosen here: Line 239 in 5023d19
For some reason, VuePress uses
Rename the GitHub readme as |
1360: Rename README.md to README.markdown r=dichotommy a=dichotommy # Pull Request ## What does this PR do? Fixes #1030 According to information obtained [here](vuejs/vuepress#2106 (comment)) This solution is also mentioned in [this thread](vuejs/vuepress#23 (comment)) ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to MeiliSearch! Co-authored-by: Tommy Melvin <[email protected]>
I am confused reading this thread in 2024. Does Github allow people to rename README.md to index.md and it will still display on the front of the repo to all visitors? |
Also if anyone cares to contribute to the discussion on SO, please do so: |
Until now, only
README.md
files got treated as a directory index.This commit also allows
index.md
to be used as index files.Related to #17.