DEV Community

Discussion on: Simple Slides with Markdown and Python

Collapse
 
michaelcurrin profile image
Michael Currin

Thanks for sharing. Looks easy to use.

For interest I've come across RevealJS which let's you use an NPM package to serve the slides or an HTML file which pulls in JS scripts and a markdown file of content to avoid compile step.

github.com/hakimel/reveal.js/tree/...

Collapse
 
rmorshea profile image
Ryan Morshead

I hadn't thought to use RevealJS. Since IDOM can integrate with native JS libraries maybe I could just use RevealJS rather than trying to role my own implementation in a future version.

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt

If you are planning to make it online anyway, you can a CDN, such as UNPKG to serve JavaScript and CSS as well; and your markup will be extremely barebone.

Collapse
 
rmorshea profile image
Ryan Morshead

Thanks for the suggestion! At present Slidedown works completely offline. I think I like the idea that you can use it without internet, so as easy as it would be to use a CDN, I think I'll have to stick to building JS dependencies into the app.