Welcome to my Markdown-powered blog! This is a sample post to demonstrate almost all Markdown features.
Table of Contents
Introduction
Markdown is a lightweight markup language for creating formatted text using a plain-text editor.
Here’s why I like it:
- It’s easy to learn.
- Works everywhere (even in GitHub README files).
- Converts nicely to HTML.
Code Snippets
Inline Code
Use backticks for inline code
.
Block Code
# Example of a Bash command
# Python example
return f
Lists
Unordered List
-
Item 1
-
Item 2
- Sub-item 2a
- Sub-item 2b
Ordered List
- First item
- Second item
- Third item
Images & Links
Here’s a link to GitHub
And here’s an image:
Blockquotes
“Markdown is the easiest way to create rich text.” – Someone on the Internet
Nested quote:
Outer quote
Inner quote
Tables
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
Inline HTML
Sometimes you need raw HTML:
This text is blue and bold using HTML.
Conclusion
Markdown is simple, powerful, and versatile. Use it for notes, documentation, and even blogs like this one!
Thanks for reading!