What's up with Markdown anyway?

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. John Gruber created Markdown in 2004. Right now, Markdown is one of the most (if not the most) popular markup languages on the internet.

Using Markdown is different than using a WYSIWYG editor. The changes you make in a What You See Is What You Get Editor are visible in real-time, the moment those changes are made. For example, formatting in Microsoft Word.

On the other hand, when creating a Markdown-formatted file, you add Markdown syntax to the text to indicate which words and phrases should appear a certain way. Websites like Reddit and Github support Markdown.

I'll be writing a simple Markdown guide/cheatsheet soon, but here are some reasons why Markdown is really useful.

How does Markdown work?

Markdown works by the principle of parsing. Initially, the Markdown-formatted document is saved with a .markdown or .md extension. Then, the file is processed in a Markdown application, which uses the Markdown syntax to generate an HTML file or print-ready document! Here's a quick breakdown of the process:

Voila! There you have it. Markdown - one of the most robust markup languages of our time.



Go back to the writing section!