Published on: 12 March 2026 Author: Saumyajit
Markdown is a lightweight markup language designed for readability and easy formatting. This post demonstrates most commonly used Markdown features in one place.
Markdown lets ideas travel faster than formatting.
You can style text in different ways:
Inline codehellowApples
Oranges
Bananas
Regular link:
Automatic link:
Reference style:
![]()
This is a blockquote.
It can span multiple lines.
Nested quote:
First level
Second level
Inline code example:
npm install next
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Developer"));
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
yield a
a, b = b, a + b
| Feature | Supported | Notes |
|---|---|---|
| Headers | Yes | Required |
| Alignment | Yes | Optional |
| Markdown | Yes | Easy to read |
Alignment example:
| Left | Center | Right |
|---|---|---|
| A | B | C |
| 1 | 2 | 3 |
Or
Here is a statement with a footnote.1
Term : Definition for the term
Markdown : A lightweight markup language
Hidden content inside a collapsible block.
You can put Markdown here too.
Inline math:
Block math:
Markdown also supports emojis:
🚀 ⚡ 🧠 💻 📚
Markdown is the Swiss army knife of writing on the web. It keeps content readable while supporting powerful formatting.
Use it for:
This is the footnote content. ↩