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

  1. Step one

  2. Step two

    1. Sub-step
    2. Another sub-step
  3. Step three


You can add a link like OpenAI or display an image:

Markdown Logo


đź§© Code Blocks

Here’s an example of a code block with syntax highlighting:

def greet(name):
    print(f"Hello, {name}!")

greet("Marius")