lang/org: move hugo config into +org-init-export-h

It doesn't warrant its own file under contrib.
This commit is contained in:
Henrik Lissner 2019-10-11 15:04:51 -04:00
parent 22b0b43fe1
commit 922b48872d
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 4 additions and 6 deletions

View file

@ -382,6 +382,10 @@ file isn't in `org-directory'."
(when (featurep! :lang markdown)
(add-to-list 'org-export-backends 'md))
(use-package! ox-hugo
:when (featurep! +hugo)
:after ox)
(use-package! ox-pandoc
:when (featurep! +pandoc)
:when (executable-find "pandoc")
@ -880,7 +884,6 @@ compelling reason, so..."
;;; Custom org modules
(if (featurep! +dragndrop) (load! "contrib/dragndrop"))
(if (featurep! +hugo) (load! "contrib/hugo"))
(if (featurep! +ipython) (load! "contrib/ipython"))
(if (featurep! +present) (load! "contrib/present"))

View file

@ -1,5 +0,0 @@
;;; +hugo.el --- ox-hugo support -*- lexical-binding: t; -*-
;;;###if (featurep! +hugo)
(use-package! ox-hugo
:after ox)