Back

Explore Courses Blog Tutorials Interview Questions
+1 vote
2 views
in DevOps and Agile by (19.7k points)

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 know README serves also as an introductory text in the project repository page but I have no idea what README.md does.

1 Answer

+2 votes
by (62.9k points)

You are right about README files, so I'll tell you about README.md

README.md or .mkdn or .markdown denotes that the file is formatted in markdown format. Markdown is a markup language, it permits you to write using an easy-to-read, easy-to-write plain text format, then, convert it to structurally valid XHTML (or HTML). Thus, 'Markdown' is 2 things:

(1) a plain-text data formatting syntax; and

(2) a software tool, written in Perl, that converts the plain text data formatting to HTML.” With it, you can easily display headers or have italic words, or bold or almost anything that can be done to the text.

Related questions

Browse Categories

...