📝

Markdown Mode

Estimated reading time: 6 min

Create presentations using Markdown with custom directives for shared-ui components.

Quick Start

npx @reactslides/cli create my-slides --mode markdown

Example

bash
---
title: My Presentation
theme: dark
aspectRatio: "16:9"
---

# Welcome

This is the first slide.

---

# Features

::list{variant="check"}
- Feature one
- Feature two
- Feature three
::

---

# Code Example

```typescript
const greeting = "Hello, World!";
console.log(greeting);
```