Skip to main content

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โ€‹

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

OpenAI is an AI research organization.

Imagesโ€‹

Here's an example image:

Sample Image

Codeโ€‹

Inline Codeโ€‹

Use code for inline code snippets.

Code Blockโ€‹

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

print(greet("World"))

Was this page helpful?


You can also leave detailed feedback on GitHub.