Sample Markdown Document
Introductionโ
Welcome to this sample Markdown document. Markdown is a lightweight markup language used for formatting text. It's widely used for documentation, readme files, and more.
Featuresโ
Headersโ
Markdown supports multiple levels of headers:
- Header 1:
# Header 1
- Header 2:
## Header 2
- Header 3:
### Header 3
Listsโ
Unordered Listโ
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
Ordered Listโ
- First item
- Second item
- Third item
Linksโ
OpenAI is an AI research organization.
Imagesโ
Here's an example image:
Codeโ
Inline Codeโ
Use code
for inline code snippets.
Code Blockโ
def greet(name):
return f"Hello, {name}!"
print(greet("World"))