Fix the quoting error.

This commit is contained in:
yujie 2013-05-07 21:11:09 +08:00
parent 2f0d07581c
commit 734c53afd7
1 changed files with 19 additions and 19 deletions

View File

@ -25,14 +25,14 @@
(require 'ox-html)
(eval-when-compile (require 'cl))
(org-export-define-derived-backend reveal html
(org-export-define-derived-backend 'reveal 'html
:menu-entry
(?R "Export to reveal.js HTML Presentation"
'(?R "Export to reveal.js HTML Presentation"
((?R "To file" org-reveal-export-to-html)))
:options-alist
((:reveal-control nil "reveal_control" org-reveal-control t)
'((:reveal-control nil "reveal_control" org-reveal-control t)
(:reveal-progress nil "reveal_progress" org-reveal-progress t)
(:reveal-history nil "reveal_history" org-reveal-history t)
(:reveal-center nil "reveal_center" org-reveal-center t)
@ -45,7 +45,7 @@
)
:translate-alist
((headline . org-reveal-headline)
'((headline . org-reveal-headline)
(inner-template . org-reveal-inner-template)
(item . org-reveal-item)
(paragraph . org-reveal-paragraph)