Function: hywiki-org-set-publish-project

hywiki-org-set-publish-project is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-org-set-publish-project)

Documentation

Setup and return the HyWiki Org publish project, a named set of properties.

Sets the org-publish-project-alist and hywiki-org-publish-project-alist variables.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-org-set-publish-project ()
  "Setup and return the HyWiki Org publish project, a named set of properties.
Sets the `org-publish-project-alist' and `hywiki-org-publish-project-alist'
variables."
  (require 'ox-publish)
  (prog1 (hywiki-org-make-publish-project-alist)
    ;; Remove "hywiki" entry from `org-publish-project-alist', then update it.
    (setf (alist-get "hywiki" org-publish-project-alist nil 'remove #'equal) nil)
    (add-to-list 'org-publish-project-alist hywiki-org-publish-project-alist t)))