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
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
- First item
- Second item
- Third item
Unordered List
- Item one
- Item two
- Item three
Links and Images
You can add links and images:
Code Examples
Inline code: print("Hello, World!")
Code block:
def greet():
print("Hello, World!")
greet()
Copied!