Create presentations using Markdown with custom directives for shared-ui components.
Quick Start
npx @reactslides/cli create my-slides --mode markdownExample
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);
```