My Markdown Page #
Introduction #
Welcome to my Markdown example page.
Subsection #
This is a subsection within the introduction.
Text Styling #
Markdown allows for easy text styling:
- Bold Text: This text is bold.
- Italic Text: This text is italic.
Strikethrough Text:This text is strikethrough.Inline Code
:This is inline code
.
Lists #
Markdown supports both ordered and unordered lists:
Ordered List #
- First item
- Second item
- Third item
Unordered List #
- Apple
- Banana
- Orange
Links #
You can include links and images easily:
Link #
Docket to learn more.
Blockquotes #
You can quote text using blockquotes:
Markdown is a lightweight markup language with plain-text formatting syntax.
Code Blocks #
You can include code blocks with syntax highlighting:
def greet(name):
print(f"Hello, {name}!")
greet("World")