Open Peter9192 opened 2 years ago
I played a bit more and made a very barebones template repository for scaffolding a reveal.js project with vite. What I like about this is that you don't need a copy of the reveal.js repo, so it is very lightweight and easy to work with.
Now working to add custom branding following the instructions as per https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md. I think it should be relatively straightforward to add your custom html/css/javascript to this as well, I'd like to explore that further.
It might also be interesting to expand on this with a component framework, something like https://github.com/rajasegar/svelte-slides.
Hi Peter, great that you started playing with the slides. They are indeed not very usable yet. I'm trying to make some time for structurally working on the house style and the template.
For me the most simple approach is:
index.html
with everything includedpython3 -m http.server
npm
stuff, but does not have live reloadpublish
) and the online presentation will be updatedThe reveal launcher is meant to simplify managing different reveal.js versions, different style sheets, and start a web server from one GUI, but it's not ready for prime-time yet.
Thanks Ole! I also like the idea of using GH pages. Perhaps a GH action to automatically build and publish to the pages branch would be nice.
I made some progress with using this style. In fact, I converted it to a small reveal.js plugin with some custom scss, which integrates quite nicely with several common reveal.js workflows, I think. I replaced much of the js event-handling code with (s)css. See here for now. Not everything works yet, but I'm getting there.
Perhaps it'd be nice to discuss this in person sometime soon.
I tried using this template. It looks awesome, congrats on that!
However, I did have some difficulties getting started. The instructions in the readme point to your repo 'reveal launcher', but in this repo I could not find any documentation about what it is and how it is to be used. To be honest, it looks a bit overkill for what I'm trying to do.
I eventually managed to use this template by:
npm start
This is perhaps not the best way to do it, but I am not used to working with reveal.js and this is the first approach that worked for me.
Is there a better way to use it? I'm specifically interested in simple solutions, so something like
npm install & npm start
. Perhaps I can look into it a bit more, but it might be helpful if you can point me in the right direction.