Test Post
This is a sample Markdown file designed to demonstrate a wide range of formatting options.
📝 Paragraphs
Markdown allows you to write text in an easy-to-read and easy-to-write format. For example:
“Simplicity is the ultimate sophistication.”
— Leonardo da Vinci
A normal paragraph can include bold, italic, or bold italic text.
You can also add inline code like console.log("Hello, world!").
đź“‹ Lists
Unordered list
-
Item one
-
Item two
- Sub-item
- Another sub-item
-
Item three
Ordered list
-
Step one
-
Step two
- Sub-step
- Another sub-step
-
Step three
đź”— Links and Images
You can add a link like OpenAI or display an image:
![]()

đź§© Code Blocks
Here’s an example of a code block with syntax highlighting:
def greet(name):
print(f"Hello, {name}!")
greet("Marius")