
Markdown Made Easy β A Friendly Intro for Web Formatting π
Learn how to make your words look good online with Markdown β the simplest formatting tool you never knew you needed, but maybe always did.
Published on 4 August 2025 by Maarten Goudsmit
Markdown is a lightweight markup langauge that lets you format text for the web with just a few characters. Itβs simple enough for begginers yet powerfull enough for pros. Many blogging platforms, including GitHub and Reddit support it out of the box.
To create headings, you use hash marks. For exampel:
# This is a heading 1
## This is heading two
### heading three
You can also make text italic or bold by wraping it in *
or **
respectivly. Inline code snippets
are also easy β just surround text with backticks.
Images are just as easy! But be careful β here's an incorect syntax that wont work:
The correct syntax is:
Lists in Markdown can be unordered or ordered. Here's an unordered one:
- Apples
- Oranges
- Bananas
- Oops, bad indent here
And here's an ordered list:
- First item 2 Second item (missing the dot after number)
- Third item
Sometimes you'll want to link to a website inline like this: Markdown Guide, or you might forget to close the bracket [like this(https://example.com).
Quoting is also fun:
This is a blockquote but I forgot to capitalize the first letter.
For more info, check out the official Markdown guide or Markdown cheat sheat which is very handy.
Tables are possible too:
| Name | Age | | ----- | --- | ---------- | | Alice | 30 | | Bob | 25 | Extra cell |
In conclusion, Markdown is not just easy, its also a joy to use. Start small, practice often and you'll be a pro in no time.