cljsjs

2016-12-10T13:45:57.000060Z

I don't think reveal.js is currently in cljsjs. Is there a way to request it? http://lab.hakim.se/reveal-js

mikebelanger 2016-12-10T14:10:49.000062Z

@aaelony Doesn't look too hard to add, library doesn't look that big

2016-12-10T14:30:20.000063Z

@mikebelanger: I found it useful recently just manually editing the html for slides in a presentation.

2016-12-10T14:30:53.000064Z

but from cljs would be even better

mikebelanger 2016-12-10T14:31:56.000065Z

@aaelony oh so you can regular DOM elements and reveal will handle it?

2016-12-10T14:33:02.000066Z

I think so. Check it out, it's pretty cool!

mikebelanger 2016-12-10T14:34:31.000067Z

@aaelony you could always get Clojurescript to create the necessary DOM nodes (with either just plain Clojurescript, or various DOM manipulation libraries), and just namespace reveal.js into your html file.

2016-12-10T14:34:37.000068Z

there's a section element that defines a slide

2016-12-10T14:35:22.000069Z

clj data to hiccup would be sufficient

2016-12-10T14:35:48.000070Z

hiccup style...

mikebelanger 2016-12-10T14:36:19.000071Z

@aaelony exactly, yeah. Maybe Garden if you want to style them.

2016-12-10T14:36:36.000072Z

yup