Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

reveal.js + TypeScript starter

A barebones reveal.js presentation, wired up with TypeScript and Vite.

To start the slide show:

Editing your deck

  • Slides live in index.html as <section> elements inside .slides.
    • Nest <section> elements for vertical slides.
    • Add the fragment class to reveal content incrementally.
    • Add <aside class="notes"> for speaker notes (press S).
  • Configuration and plugins live in src/main.ts.

Themes

Swap the theme import in src/main.ts for any built-in theme, e.g.:

import 'reveal.js/theme/white.css';

Building

  • npm run build — type-check and bundle to dist/
  • npm run preview — preview the production build

Learn more in the reveal.js documentation.