Function: hywiki-org-get-publish-project
hywiki-org-get-publish-project is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-org-get-publish-project)
Documentation
Return the HyWiki Org publish project, a named set of properties.
If not found, set it up and return the new project properties.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-org-get-publish-project ()
"Return the HyWiki Org publish project, a named set of properties.
If not found, set it up and return the new project properties."
(require 'ox-publish)
(let ((project (assoc "hywiki" org-publish-project-alist)))
(if (and project hywiki-org-publish-project-alist)
project
(hywiki-org-set-publish-project))))