Introduction to Markdown
Write your introduction here. This is a sample blog post — replace this content with your own writing.
Text Formatting
You can format text in various ways:
- Bold Text: Use double asterisks or underscores
**bold**or__bold__. - Italic Text: Use single asterisks or underscores
*italic*or_italic_. - Bold and Italic: Combine them like
***bold and italic***. Strikethrough: Use double tildes~~strikethrough~~.Inline Code: Use single backticks`code`.
Headings
You’ve already seen an H1 and H2. You can go up to H6:
Heading 3
Heading 4
Heading 5
Heading 6
Lists
Unordered Lists
You can use asterisks *, hyphens -, or plus signs + for unordered lists:
- Item 1
- Item 2
- Sub-item A
- Sub-item B
- Item 3
Ordered Lists
Use numbers followed by periods:
- First step
- Second step
- Third step
- Sub-step A
- Sub-step B
Links and Images
Links
ALL in One DSA is a great resource. You can also create links with titles.
Images

Note: For local images in this blog, use the appropriate relative path.
Blockquotes
Blockquotes are very handy for quoting text. They can also be nested.
Like this!
You can even use other Markdown inside a blockquote.
Code Blocks
For larger blocks of code, use triple backticks. You can also specify the language for syntax highlighting!
# A simple Python demo
print("Hello, World!")
Tables
Tables are easy to create using pipes | and hyphens -.
| Syntax | Description | Test Text |
|---|---|---|
| Header | Title | Here's this |
| Paragraph | Text | And more |
Colons can be used to align columns.
Horizontal Rules
You can use three or more hyphens, asterisks, or underscores to create a horizontal rule.
Task Lists
Conclusion
This file covers the essential Markdown features you'll need for writing rich and structured blog posts! Happy writing!