Skip to content

Latest commit

 

History

History
98 lines (73 loc) · 2.5 KB

example.md

File metadata and controls

98 lines (73 loc) · 2.5 KB
theme author title subtitle info
./
Foo bar
REX Migration et portabilité
Python vers Rust
How Parsec migrated its application from <code>Python</code> to <code>Rust</code>

Slidev Theme Starter

Presentation slides for developers

Press Space for next page

What is Slidev?

Slidev is a slide maker and presentation tool designed for developers. It includes the following features:

  • 📝 Text-based - focus on your content with Markdown, then style it later
  • 🎨 Themable - themes can be shared and reused as npm packages
  • 🧑‍💻 Developer Friendly - code highlighting, live coding with autocompletion
  • 🤹 Interactive - embed Vue components to enhance your expressions
  • 🎥 Recording - built-in recording and camera view
  • 📤 Portable - export to PDF, PPTX, PNGs, or even a hostable SPA
  • 🛠 Hackable - virtually anything that's possible on a webpage is possible in Slidev


Read more about Why Slidev?


Navigation

Hover on the bottom-left corner to see the navigation's controls panel

Keyboard Shortcuts

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

layout: image-right image: https://cover.sli.dev

Code

Use code snippets and get the highlighting directly!

interface User {
  id: number
  firstName: string
  lastName: string
  role: string
}

function updateUser(id: number, update: Partial<User>) {
  const user = getUser(id)
  const newUser = { ...user, ...update }
  // 0 + 1 + 2 => 3
  saveUser(id, newUser)
}

layout: intro routeAlias: intro-test author: Foo bar title: Lorem Ipsum subtitle: dolor sit amet, consectetur adipiscing elit

::date::


layout: center class: "text-center"

Learn More

Documentation / GitHub Repo