diff --git a/README.org b/README.org index 996cf55..20647ee 100644 --- a/README.org +++ b/README.org @@ -580,3 +580,15 @@ Configure the default capture template for daily entries. :file-name "daily/%<%Y-%m-%d>" :head "#+TITLE: %<%Y-%m-%d>\n"))) #+end_src + +** Presentations + +Produce high quality presentations that work anywhere with =HTML/JS= via the =reveal.js= package. + +https://github.com/hexmode/ox-reveal ++ Configure to use =cdn= + +#+begin_src emacs-lisp +(use-package ox-reveal + :custom (org-reveal-root "https://cdn.jsdelivr.net/reveal.js/3.9.2/")) +#+end_src diff --git a/init.el b/init.el index 87a676e..67ae6de 100644 --- a/init.el +++ b/init.el @@ -235,3 +235,6 @@ "* %?" :file-name "daily/%<%Y-%m-%d>" :head "#+TITLE: %<%Y-%m-%d>\n"))) + +(use-package ox-reveal + :custom (org-reveal-root "https://cdn.jsdelivr.net/reveal.js/3.9.2/"))