My First Blog Post

Welcome to my first blog post! This is an example of how markdown content gets transformed into Dioxus components.

Code Example

Here's a simple Rust function:

fn greet(name: &str) -> String {
    format!("Hello, {}!", name)
}

fn main() {
    println!("{}", greet("World"));
}

Lists Work Too

  • First item
  • Second item
  • Third item with bold text

Conclusion

This demonstrates the basic functionality of the mdbook integration. More posts coming soon!