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,31 +25,31 @@
(require 'ox-html) (require 'ox-html)
(eval-when-compile (require 'cl)) (eval-when-compile (require 'cl))
(org-export-define-derived-backend reveal html (org-export-define-derived-backend 'reveal 'html
:menu-entry :menu-entry
(?R "Export to reveal.js HTML Presentation" '(?R "Export to reveal.js HTML Presentation"
((?R "To file" org-reveal-export-to-html))) ((?R "To file" org-reveal-export-to-html)))
:options-alist :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-progress nil "reveal_progress" org-reveal-progress t)
(:reveal-history nil "reveal_history" org-reveal-history t) (:reveal-history nil "reveal_history" org-reveal-history t)
(:reveal-center nil "reveal_center" org-reveal-center t) (:reveal-center nil "reveal_center" org-reveal-center t)
(:reveal-root "REVEAL_ROOT" nil org-reveal-root t) (:reveal-root "REVEAL_ROOT" nil org-reveal-root t)
(:reveal-trans "REVEAL_TRANS" nil org-reveal-transition t) (:reveal-trans "REVEAL_TRANS" nil org-reveal-transition t)
(:reveal-theme "REVEAL_THEME" nil org-reveal-theme t) (:reveal-theme "REVEAL_THEME" nil org-reveal-theme t)
(:reveal-hlevel "REVEAL_HLEVEL" nil nil t) (:reveal-hlevel "REVEAL_HLEVEL" nil nil t)
(:reveal-mathjax nil "reveal_mathjax" org-reveal-mathjax t) (:reveal-mathjax nil "reveal_mathjax" org-reveal-mathjax t)
(:reveal-mathjax-url "REVEAL_MATHJAX_URL" nil org-reveal-mathjax-url t) (:reveal-mathjax-url "REVEAL_MATHJAX_URL" nil org-reveal-mathjax-url t)
) )
:translate-alist :translate-alist
((headline . org-reveal-headline) '((headline . org-reveal-headline)
(inner-template . org-reveal-inner-template) (inner-template . org-reveal-inner-template)
(item . org-reveal-item) (item . org-reveal-item)
(paragraph . org-reveal-paragraph) (paragraph . org-reveal-paragraph)
(template . org-reveal-template))) (template . org-reveal-template)))
(defcustom org-reveal-root "./reveal.js" (defcustom org-reveal-root "./reveal.js"
"The root directory of reveal.js packages. It is the directory "The root directory of reveal.js packages. It is the directory