← Back to converter
Skip to content
# Slide Title A simple default for slide previews. --- ## Second Slide Add your own content from the main page. Use the form to paste markdown or pick a template. --- ## Third Slide You can add lists, code, and more. - Bullet one - Bullet two Or paste your own markdown from the main page. --- ## Fourth Slide – Images Embed images with markdown:  Add your own image URLs. --- ```python def greet(name): return f"Hello, {name}!" ``` > Key idea or quote goes here. > Multiple lines work too. **Bold**, *italic*, and `inline code`. --- | Feature | Slide | | :-------: | :---: | | Title | 1 | | Paragraph | 2 | | List | 3 | | Image | 4 | | Text | 5 | | Table | 6 | | Link + OL | 7 | | Mermaid | 8 | --- [Link to example](https://example.com) 1. First step 2. Second step 3. Third step --- ```mermaid graph LR A[Start] --> B{OK?} B -->|Yes| C[Done] B -->|No| D[Retry] ```