# 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](#introduction) 2. [Lists](#lists) 3. [Links and Images](#links-and-images) 4. [Code Examples](#code-examples) 5. [Conclusion](#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 ## Links and Images You can add links and images: - [Visit OpenAI](https://www.openai.com) - ![Sample Image](https://via.placeholder.com/150 "Placeholder Image") ## Code Examples Inline code: `print("Hello, World!")` Code block: ```python def greet(): print("Hello, World!") greet()