From e886dc9e27a436b868894b49610f18cadb0e479e Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 14 Jan 2021 10:11:35 -0500 Subject: [PATCH] Add org-reveal for HTML presentations --- README.org | 12 ++++++++++++ init.el | 3 +++ 2 files changed, 15 insertions(+) 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/"))