Klimi's new dotfiles with stow.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

22 Zeilen
893 B

vor 4 Jahren
  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