Skip to content

Latest commit

 

History

History
95 lines (67 loc) · 2.06 KB

example.md

File metadata and controls

95 lines (67 loc) · 2.06 KB
theme title author exportFilename confidentialityLevel
./
Example Doctolib slides
Alexandre Lam
doctolib-example
0

Doctolib Template C0.

Subtitle of the presentation


What is Doctolib + Slidev?

An amazing combination

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
  • 🎨 Themable - 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 Why Slidev?


Doctolib Themes

Subheaders h2

  1. With the right fonts
  2. With the right colors
  3. With the right Doctolib logo

This is a paragraph!!

Second subheader

Hello


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

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 }
  saveUser(id, newUser)
}

layout: center class: "text-center"

Learn More

Documentations / GitHub Repo