[presentation]
title = "My Talk"
author = "Jane Doe"
description = "An example presentation"
version = "0.1.0"
[[slides]]
kind = "Part"
title = "Part 1: Introduction"
[[slides]]
title = "Welcome"
body = '''
Welcome to this presentation!
This is a multi-line text block.
'''
[slides.style]
background_color = "#2d3436"
color = "#dfe6e9"
[[slides.notes]]
body = "Speaker notes go here"
[[slides]]
title = "Code Example"
body = '''
Here is some Rust code:
```rust
fn hello() {
println!("Hello!");
}
```
'''
[[slides]]
kind = "Part"
title = "Part 2: Deep Dive"
[[slides]]
title = "Key Concepts"
body = '''
- First concept
- Second concept
- Third concept
'''