I found Presenterm [1] to be optimal for me. Simple and works in the terminal, yet powerful to export to PDF and HTML. It supports Mermaid and images. I'm also collecting a list [2] with other Markdown-first presentation tools, and according to the git stars, reveal.js seems to be the most popular. Tough for me, it was too heavy.<p>[1] <a href="https://github.com/mfontanini/presenterm" rel="nofollow">https://github.com/mfontanini/presenterm</a><p>[2] <a href="https://www.ssp.sh/brain/markdown-presentations-or-slides/" rel="nofollow">https://www.ssp.sh/brain/markdown-presentations-or-slides/</a>
I used <a href="https://revealjs.com/" rel="nofollow">https://revealjs.com/</a> in the past for this successfully. I have very good experience with that from circa 10 years ago.
I find the notes mode confusing. You can't tell if you're viewing a note or a slide.<p>Why would you use it? In PowerPoint the point of notes is to have an aside view for the presenter for extra info. Here all is revealed to the viewer.
You could share a screen with the slides and have the notes visible to yourself. Also the notes mode has a dashed border around it.<p>This is just a simple demo but it's really cool how simple and easy it is in practice.
Open the page in two windows, with one that has note mode enabled
I love it, but it was very disorienting to use `j` to move forward and `k` to move backward.
Fastmail uses these too, as does vim.
jk
lol yeah... "tell me you are lefty without telling me you are lefty"
one thing that I immediately noticed is that this site has no mobile support at all.<p>that's why I will link this presentation I made, in just a few hours, for a school project. it has mobile support, automatic fullscreen, and is still lightweight. unfortunately, I lost the code for the engine alone, so I only have the "exported product".<p><a href="https://jotalea.com.ar/tests/tpanticx" rel="nofollow">https://jotalea.com.ar/tests/tpanticx</a>
Nice, I hv been working on engine that renders pptx (without compromising original styles) in web browsers...
<p><pre><code> (i = slide.nextElementSibling)?.className == "slidenote" ? i : slide
]),
</code></pre>
An alternative approach:<p><pre><code> slide.querySelector(":scope+.slidenote") ?? slide
</code></pre>
(|| would work just as well as ??, but ?? feels more appropriate.)
Haha, I see people talking about slides everywhere, from specific moment in my life... that's when I started coding slidepicker.com!<p>Anyway, nice work! I created something similar for our product (a list of divs that switch visibility based on keyboard input).
I use HTML for my presentations and publish them online mentioning the URL at the top, such that people can open them on their device, which is often a smart phone. I take that into account for the interactive parts of the presentation.
This is really cute!<p>I have a special spot in my heart for tools that do a good job of explaining themselves using their own outputs.<p>I wonder how hard it would be to add the cute old PowerPoint style transitions using CSS
Maybe it would be easy to add the shortcuts
g - jump to first slide
G - jump to last slide
Could add clicker support (which I have done previously). Note however that clickers vary between Up/Down and PgUp/PgDown. Enabling the former was potentially annoying if you like to use the arrow keys to scroll, so I made that configurable.
Alternatively you configure mappings per device outside the browser.