Example Markdown Documentation

Welcome to this sample Markdown document. Markdown is a lightweight markup language that you can use to add formatting elements to plain text.

Table of Contents

  1. Introduction
  2. Lists
  3. Links and Images
  4. Code Examples
  5. Conclusion

Introduction

Markdown makes it easy to format documents with bold text, italic text, and more.

Lists

You can create ordered and unordered lists:

Ordered List

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

Unordered List

  • Item one
  • Item two
  • Item three

Code Examples

Inline code: print("Hello, World!")

Code block:

def greet():
    print("Hello, World!")
greet()
Copied!