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

这些文件有什么不同?我知道README也作为项目存储库页面的介绍性文本,但我不知道README是什么。医学博士。


当前回答

.md扩展名代表Markdown, Github使用它来格式化这些文件。

阅读Markdown:

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

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

另外:

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

其他回答

.md降价了。自述文件。Md用于生成您在项目底部看到的HTML摘要。Github有自己的Markdown风格。

优先顺序:如果您有两个名为README和README的文件。md,文件名为README。Md是首选,它将用于生成github的HTML摘要。


FWIW, Stack Overflow使用本地Markdown修改以及(也见Stack Overflow的c# Markdown处理器)

.md扩展名代表Markdown, Github使用它来格式化这些文件。

阅读Markdown:

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

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

另外:

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

自述文件。Md或.mkdn或.markdown表示文件是markdown格式的。 Markdown是一种标记语言。有了它,你可以很容易地显示标题或斜体字,或粗体或几乎任何可以对文本做的事情

.md代表markdown,在你的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/