Skip to content

Latest commit

 

History

History
88 lines (59 loc) · 2.05 KB

example.md

File metadata and controls

88 lines (59 loc) · 2.05 KB
theme highlighter
./
shiki

Slidev Theme Geist

The Vercel theme for Slidev

Press space to go to the next page ->

What is Slidev?

Slidev is a slides maker and presenter designed for developers, consist of the following features

  • 📝 Text-based - focus on the content with Markdown, and then style them later
  • 🎨 Themeable - theme can be shared and used with npm packages
  • 🧑‍💻 Developer Friendly - code highlighting, live coding with autocompletion
  • 🤹 Interactive - embedding Vue components to enhance your expressions
  • 🎥 Recording - built-in recording and camera view
  • 📤 Portable - export into PDF, PNGs, or even a hostable SPA
  • 🛠 Hackable - anything possible on a webpage

Read more about Slidev


Navigation

Hover over the bottom-left corner of your screen to see the control panel.

Keyboard Shortcuts

shortcut purpose
space / tab / right next animation or slide
left previous animation or slide
up previous slide
down next slide

Code

Use code snippets and get automatic highlighting!

// type
interface User {
    id: number;
    firstName: string;
    lastName: string;
    role: string;
}

// function
function updateUser(id: number, update: Partial<User>) {
    const user = getUser(id);
    const newUser = { ...user, ...update };
    saveUser(id, newUser);
}

Theme Components

Button

Button

Keyboard Input

P

Note

Note


Learn More

Documentation / GitHub Repository