What is the difference between README and README.md in GitHub projects?

后端 未结 4 1414
遥遥无期
遥遥无期 2020-12-07 06:44

I\'ve noticed some GitHub projects have not only a README file, but also a README.md file.

What is the difference between these files? I kn

4条回答
  •  攒了一身酷
    2020-12-07 07:14

    .md is markdown. README.md is used to generate the html summary you see at the bottom of projects. Github has their own flavor of Markdown.

    Order of Preference: If you have two files named README and README.md, the file named README.md is preferred, and it will be used to generate github's html summary.


    FWIW, Stack Overflow uses local Markdown modifications as well (also see Stack Overflow's C# Markdown Processor)

提交回复
热议问题