From f4fcf0e47ca4bdb8043373f2f3c51545ebc68fb3 Mon Sep 17 00:00:00 2001 From: Guus Waals <_@guusw.nl> Date: Thu, 5 Dec 2024 19:26:08 +0800 Subject: [PATCH] New post --- posts/hello-world-2.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 posts/hello-world-2.md diff --git a/posts/hello-world-2.md b/posts/hello-world-2.md new file mode 100644 index 0000000..6bdad65 --- /dev/null +++ b/posts/hello-world-2.md @@ -0,0 +1,38 @@ +# Hello World + +Welcome to my blog! This is my first post written in Markdown and served by a custom Rust web server. + +## Features + +This blog supports: + +- **CommonMark** markdown parsing +- Git-based cache invalidation +- Template-driven rendering +- Custom template tags + +## Code Example + +Here's a simple Rust function: + +```rust +fn greet(name: &str) -> String { + format!("Hello, {}!", name) +} +``` + +## Lists + +Unordered list: +- Item one +- Item two +- Item three + +Ordered list: +1. First item +2. Second item +3. Third item + +--- + +Thanks for reading!