2022-10-07 17:30:50 +01:00
|
|
|
import Reveal from 'reveal.js';
|
|
|
|
import Markdown from 'reveal.js/plugin/markdown/markdown.js';
|
|
|
|
import Notes from 'reveal.js/plugin/notes/notes.js';
|
2022-11-12 17:30:18 +00:00
|
|
|
import Highlight from 'reveal.js/plugin/highlight/highlight.js';
|
2022-10-07 17:30:50 +01:00
|
|
|
|
|
|
|
let deck = new Reveal({
|
2022-11-12 17:30:18 +00:00
|
|
|
plugins: [ Markdown, Notes, Highlight ],
|
2022-10-07 17:30:50 +01:00
|
|
|
controlsTutorial: false,
|
2022-11-04 17:20:55 +00:00
|
|
|
hash: true
|
2022-10-07 17:30:50 +01:00
|
|
|
})
|
|
|
|
deck.initialize();
|