10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
import Reveal from 'reveal.js'
|
|
import Markdown from 'reveal.js/plugin/markdown/markdown.esm.js'
|
|
import RevealHighlight from 'reveal.js/plugin/highlight/highlight.esm.js'
|
|
|
|
let deck = new Reveal({
|
|
plugins: [Markdown, RevealHighlight],
|
|
})
|
|
|
|
deck.initialize()
|