Function: hfy-link-style
hfy-link-style is a byte-compiled function defined in
htmlfontify.el.gz.
Signature
(hfy-link-style STYLE-STRING)
Documentation
Copy, alter and return a STYLE-STRING to make it suitable for a hyperlink.
Uses hfy-link-style-fun to do this.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defun hfy-link-style (style-string)
"Copy, alter and return a STYLE-STRING to make it suitable for a hyperlink.
Uses `hfy-link-style-fun' to do this."
(if (functionp hfy-link-style-fun)
(funcall hfy-link-style-fun style-string)
style-string))