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
- Example Markdown Documentation
- Table of Contents
- Introduction
- Lists
- Ordered List
- Unordered List
- Links and Images
- Code Examples
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:
```python
def greet():
print("Hello, World!")
greet()