GitHub项目中的README和README.md有什么区别?

我注意到一些GitHub项目不仅有一个README文件,而且还有一个README.md文件。

这些文件有什么区别? 我知道README也可以作为项目资源库页面中的介绍性文本,但我不知道README.md作用。


.md是markdownREADME.md用于生成您在项目底部看到的html摘要。 Github有自己的降价风格。

优先顺序:如果您有两个名为READMEREADME.md的文件,则首选名为README.md的文件,它将用于生成github的html摘要。


FWIW,Stack Overflow也使用本地Markdown修改(另请参阅Stack Overflow的C#降价处理器)


.md代表降价,并在您的github页面的底部生成html。

典型的语法包括:

Will become a heading
==============

Will become a sub heading
--------------

*This will be Italic*

**This will be Bold**

- This will be a list item
- This will be a list item

    Add a indent and this will end up as code

欲了解更多详情,请访问: http : //daringfireball.net/projects/markdown/


.md扩展名表示Markdown,Github使用其中的格式来格式化这些文件。

阅读关于Markdown:

http://daringfireball.net/projects/markdown/

http://en.wikipedia.org/wiki/Markdown

也:

http://github.github.com/github-flavored-markdown/

链接地址: http://www.djcxy.com/p/1211.html

上一篇: What is the difference between README and README.md in GitHub projects?

下一篇: Git: repo contains an empty directory