From 5a09a8d4aad23b603e1f10261242512124cdb14b Mon Sep 17 00:00:00 2001 From: Sean Escriva Date: Tue, 7 May 2013 20:55:27 -0700 Subject: [PATCH] Add appropriate package headers --- ox-reveal.el | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ox-reveal.el b/ox-reveal.el index c4382a9..daa6845 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -1,12 +1,17 @@ -;; ox-reveal --- reveal.js Presentation Back-End for Org Export Engine +;;; ox-reveal.el --- reveal.js Presentation Back-End for Org Export Engine ;; Copyright (C) 2013 Yujie Wen ;; Author: Yujie Wen +;; Created: 2013-04-27 +;; Version: 1.0 +;; Package-Requires: ((org "8.0")) ;; Keywords: outlines, hypermedia, slideshow, presentation ;; This file is not part of GNU Emacs. +;;; Copyright Notice: + ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or @@ -22,6 +27,8 @@ ;; Please see "Readme.org" for detail introductions. +;;; Code: + (require 'ox-html) (eval-when-compile (require 'cl)) @@ -451,3 +458,5 @@ info is a plist holding export options." 'reveal file subtreep visible-only body-only ext-plist))) (provide 'ox-reveal) + +;;; ox-reveal.el ends here