Server MD with Rust

This commit is contained in:
Jarek Rozanski 2026-01-28 20:56:35 +01:00
commit 3899ecce2f
14 changed files with 2823 additions and 0 deletions

15
sample/content/foo/bar.md Normal file
View file

@ -0,0 +1,15 @@
# Hello World
This is a sample markdown file served at `/foo/bar`.
## Features
- Markdown support
- Automatic HTML conversion
- URL path based on file location
```rust
fn main() {
println!("Hello from Rust!");
}
```