Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
893 B

4 years ago
  1. ;;; ox-re-reveal.el --- Loader for org-re-reveal -*- lexical-binding: t; -*-
  2. ;; SPDX-License-Identifier: GPL-3.0-or-later
  3. ;; Copyright (C) 2019 Jens Lechtenbörger
  4. ;;; Commentary:
  5. ;; Org export back-ends have file names starting with "ox-".
  6. ;; However, such files typically define variables and functions
  7. ;; starting with "org-", which causes errors by package-lint. To
  8. ;; define variables and functions with the usual prefix "org-" while
  9. ;; avoiding errors by package-lint, code is located in
  10. ;; org-re-reveal.el.
  11. ;; However, the prefix "ox-" is hard-coded in org.el and used to load
  12. ;; back-ends in `org-export-backends'. With this file, you can
  13. ;; customize `org-export-backends' and add `re-reveal'. Then, when
  14. ;; pressing `C-c C-e', this file will be loaded, which loads
  15. ;; org-re-reveal.el.
  16. ;;; Code:
  17. (require 'org-re-reveal)
  18. (provide 'ox-re-reveal)
  19. ;;; ox-re-reveal.el ends here