Title of the Document
Welcome to this Markdown document. Below, you'll find examples of various Markdown syntax elements.
Section 1: Basic Formatting
Bold text Italic text Strikethrough
- Task list item 1
- Completed task list item
Subsection: Links and Images
Here is a link to google. And here’s an image:
![]()
Subsection: Code Blocks
Inline code looks like this: print("Hello, World!")
# This is a Python code block
def greet():
print("Hello, World!")
end.