Markdown Reference: Speak the Language of Slides.
Mastering TypeSlide starts with Markdown. This quick reference guide will help you craft your presentations efficiently, focusing purely on your content and structure.
Basic Formatting
Markdown | Rendered Output | Description |
---|---|---|
# My New Slide Title |
(Starts a new slide) | New Slide: The most important command. A single # at the beginning of a line indicates a new presentation slide. |
## Block Title |
new block |
Block: Creates an new horizontal block. Main purpose is to end a column created with ###. |
### Column Title |
new column element | Column: Add a new column to the current block or slide. |
**bold text** |
bold text | Bold: Emphasize key terms. |
*italic text* |
italic text | Italic: For emphasis or titles. |
Lists & Content Blocks
Markdown | Rendered Output | Description |
---|---|---|
* Item One |
* Item One | Unordered List: Use * or - to create bullet points. |
* Item Two |
* Item Two | |
1. First Point |
1. First Point | Ordered List: Use numbers followed by a period. |
2. Second Point |
2. Second Point | |
> This is a quote. |
> This is a quote. | Blockquote: For emphasis or citations. |
TypeSlide Specific & Advanced Elements