Function: kexport:html-markup

kexport:html-markup is a byte-compiled function defined in kexport.el.

Signature

(kexport:html-markup STRING)

Documentation

Perform replacements on STRING specified by kexport:html-replacement-alist.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kexport.el
(defun kexport:html-markup (string)
  "Perform replacements on STRING specified by `kexport:html-replacement-alist'."
  (mapc
   (lambda (elt)
     (setq string (replace-regexp-in-string (car elt) (cdr elt) string)))
   kexport:html-replacement-alist)
  string)