Sample Markdown Test

This is a sample document that demonstrates basic Markdown syntax.

Table of Contents

  1. Introduction
  2. Formatting Text
  3. Lists
  4. Links and Images
  5. Code Blocks
  6. Tables
  7. Blockquotes
  8. Horizontal Rule

Introduction

Markdown is a lightweight markup language with plain-text formatting syntax. It’s designed so that it can be converted into many formats, but the primary format it’s used for is HTML.


Formatting Text

You can make text bold, italic, or even both:


Lists

Unordered List

Ordered List

  1. First item
  2. Second item
  3. Third item

Links and Images

Link

Google

Image

Markdown Logo


Code Blocks

Inline Code

You can use backticks for inline code.

Code Block

def greet(name):
    print(f"Hello, {name}!")

Table

Name Age Occupation
Alice 30 Engineer
Bob 25 Designer
Carol 28 Writer

Blockquote

Markdown is a way to style text on the web.