Markdown Slides
Write in Markdown. Present Anywhere.
What You Can Do
- Write slides in pure Markdown
- Include code, math, and diagrams
- Add speaker notes for presenter view
- Use progressive reveals for storytelling
- Customize themes and transitions
Code Highlighting
def fibonacci(n: int) -> int:
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
# Calculate the 10th Fibonacci number
print(fibonacci(10)) # Output: 55
Mathematical Equations
Einstein’s famous equation: