Function: hywiki-org-export-function
hywiki-org-export-function is a byte-compiled function defined in
hywiki.el.
Signature
(hywiki-org-export-function &rest _)
Documentation
Convert HyWikiWord links to Org links and add title if missing.
Do not convert the index file.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-org-export-function (&rest _)
"Convert HyWikiWord links to Org links and add title if missing.
Do not convert the index file."
(require 'org-element)
(when (and (derived-mode-p 'org-mode)
(not (string= (hywiki--sitemap-file) (buffer-file-name))))
(hywiki-references-to-org-links)
(hywiki-org-maybe-add-title)))