Blog Test
(Updated: March 31, 2025)
testfeatureblogportfoliobaygut
The first but not the last.
Sample Markdown Document
Introduction
Markdown is a lightweight markup language that allows you to format text using plain text symbols. It's widely used for creating formatted text in a simple and readable way.
Text Formatting
You can apply different styles to your text:
- Italic: Enclose text in single asterisks or underscores.
- Bold: Enclose text in double asterisks or underscores.
Monospace
: Enclose text in backticks.
Lists
Markdown supports both ordered and unordered lists:
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First item
- Second item
- Third item
Links and Images
- Example Link: This is a hyperlink.
: This is an image.
Code Blocks
Inline code is enclosed in backticks, like code()
. For multiline code blocks, use triple backticks:
def greet(name): return f"Hello, {name}!"