Welcome!

First post to say hi and test markdown synthax

Iā€™m making this post to test every markdown feature.

Text Formatting

Bold, Italic, and Strikethrough

  • Bold text
  • Italic text
  • Bold and italic text
  • Strikethrough text

Blockquotes

This is a blockquote.

It can span multiple lines.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item

Code

Inline Code

Use println!("Hello, World!"); to display text in Rust.

Code Block

// This is a Rust code block
fn main() {
  println!("Hello, World!");
}

Tables

NameAgeCity
Alice25New York
Bob30London
Eve22Berlin

Links and Images

Hyperlink

Visit My Blog!

Image

Markdown Logo

Horizontal Rule


Emojis

šŸ˜€ šŸŽ‰ šŸš€

Conclusion

This document tests all Markdown functionalities to ensure proper formatting and readability.