What is Markdown?
Short answer
Markdown is a lightweight markup language for writing formatted text with plain characters, like # for a heading and ** for bold. It stays readable as plain text and is converted to HTML for display.
Formatting with plain text
Markdown lets you mark up text using characters you already type. A # makes a heading, **text** makes bold, and a - starts a list. The raw file stays perfectly readable, which is what sets it apart from HTML.
# Title
Some **bold** text and a [link](https://utilumo.com).
- first item
- second itemWhy it is everywhere
- It is fast to write and easy to read in raw form
- It converts cleanly to HTML for the web
- It is plain text, so it works with version control and any editor
- It is the standard for READMEs, docs, issues, and many note apps