Variable: hywiki-org-publishing-broken-links
hywiki-org-publishing-broken-links is a customizable variable defined
in hywiki.el.
Value
mark
Documentation
HyWiki Org publish option that determines how invalid links are handled.
The default is 'mark.
When this option is non-nil, broken HyWiki links are ignored, without stopping the export process. If it is set to 'mark, broken links are marked with a string like:
[BROKEN LINK: path]
where PATH is the un-resolvable reference.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defcustom hywiki-org-publishing-broken-links 'mark
"HyWiki Org publish option that determines how invalid links are handled.
The default is \\='mark.
When this option is non-nil, broken HyWiki links are ignored,
without stopping the export process. If it is set to \\='mark,
broken links are marked with a string like:
[BROKEN LINK: path]
where PATH is the un-resolvable reference."
:initialize #'custom-initialize-default
:set (lambda (option value)
(set option value)
(hywiki-org-set-publish-project))
:type 'symbol
:group 'hyperbole-hywiki)