summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Frankel <rick@rickster.com>2014-01-16 17:48:10 -0500
committerRick Frankel <rick@rickster.com>2014-01-16 17:48:10 -0500
commit4e1d72360fbcd3a2d5bc680570fef7f4b2d010f2 (patch)
tree215996bac197a102fb9920a401e14b133c4be0e0
parentb7c1014353241d8cfe1bfe8094a8932da37860d6 (diff)
downloadorg-mode-4e1d72360fbcd3a2d5bc680570fef7f4b2d010f2.tar.gz
Fix title page template.
* contrib/lisp/ox-s5.el (org-s5-title-slide-template): Per Arne Babenhauserheide, the heading levels on the default title slide template were wrong per the S5 spec.
-rw-r--r--contrib/lisp/ox-s5.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/lisp/ox-s5.el b/contrib/lisp/ox-s5.el
index 1993722..26e83a3 100644
--- a/contrib/lisp/ox-s5.el
+++ b/contrib/lisp/ox-s5.el
@@ -174,8 +174,8 @@ or an empty string."
(defcustom org-s5-title-slide-template
"<h1>%t</h1>
<h2>%a</h2>
-<h2>%e</h2>
-<h2>%d</h2>"
+<h3>%e</h3>
+<h4>%d</h4>"
"Format template to specify title page section.
See `org-html-postamble-format' for the valid elements which
can be included.