Sample Markdown Presentation
Sample Markdown Presentation
Welcome to markdown-based slides!
Why Markdown?
- Simple - Just write text
- Fast - No complex formatting
- Portable - Works everywhere
- Version Control - Git-friendly
Slide Separators
Use
--- (three dashes) to separate slides markdown
# Slide 1
Content here
---
# Slide 2
More content Vertical Slides
Use
-- (two dashes) for vertical slidesPress ↓ to go down
--
I'm a vertical slide!
You can navigate up and down within a section
--
Another vertical slide
Use these for related sub-topics
Code Examples
javascript
// JavaScript example
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
greet('World'); python
# Python example
def greet(name):
print(f"Hello, {name}!")
greet("World") Images and Media
Images work just like in regular markdown
Tables
| Feature | Markdown | HTML |
| Easy to write | ✅ | ❌ |
| Easy to read | ✅ | ❌ |
| Version control | ✅ | ⚠️ |
| Styling | ⚠️ | ✅ |
Lists and Fragments
- First item
- Second item
- Third item
- Unordered item
- Another item
- Nested item
- Another nested
Speaker Notes
Add speaker notes with HTML comments:
html
<!-- .notes: These are speaker notes --> Thank You!
Tips
- Press
Ffor fullscreen - Press
Sfor speaker notes - Press
ESCfor overview - Press
?for help