Add appropriate package headers

This commit is contained in:
Sean Escriva 2013-05-07 20:55:27 -07:00
parent 734c53afd7
commit 5a09a8d4aa
1 changed files with 10 additions and 1 deletions

View File

@ -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 <yjwen.ty at gmail dot com>
;; 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