sample post
Header 1
Header 2
Header 3
Header 4
Header 5
Header 6
Introduction
This is a sample markdown document created to demonstrate the basic syntax of Markdown. You can use Markdown to:
- Format text
- Create lists
- Add links and images
- Include code snippets
Formatting Text
Here are some examples of text formatting:
- Italic: This is italic text.
- Bold: This is bold text.
Strikethrough:This text is crossed out.
Lists
Ordered List:
- First item
- Second item
- Third item
Unordered List:
- Item 1
- Item 2
- Item 3
Links and Images
Here’s how to add links and images:
Code Snippets
Inline code: print("Hello, World!")
Block of code:
def greet():
print("Hello, Markdown!")
greet()