Blog Demo

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:

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:

Ordered Lists

Use numbers followed by periods:

  1. First step
  2. Second step
  3. Third step
    1. Sub-step A
    2. Sub-step B

Links and Images

Links

ALL in One DSA is a great resource. You can also create links with titles.

Images

Markdown Logo
Markdown Logo

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!

markdown blog-demo