Variable: newsticker-html-renderer
newsticker-html-renderer is a customizable variable defined in
newst-reader.el.gz.
Value
shr-render-region
Documentation
Function for rendering HTML contents.
If non-nil, newsticker.el will call this function whenever it
finds HTML-like tags in item descriptions.
Possible functions include shr-render-region, w3m-region, w3-region, and
newsticker-htmlr-render.
Newsticker automatically loads the respective package w3m, w3, or
htmlr if this option is set.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-reader.el.gz
(defcustom newsticker-html-renderer
(if (fboundp 'libxml-parse-html-region)
#'shr-render-region)
"Function for rendering HTML contents.
If non-nil, newsticker.el will call this function whenever it
finds HTML-like tags in item descriptions.
Possible functions include `shr-render-region', `w3m-region', `w3-region', and
`newsticker-htmlr-render'.
Newsticker automatically loads the respective package w3m, w3, or
htmlr if this option is set."
:type '(choice :tag "Function"
(const :tag "None" nil)
(const :tag "SHR" shr-render-region)
(const :tag "w3" w3-region)
(const :tag "w3m" w3m-region)
(const :tag "htmlr" newsticker-htmlr-render))
:set #'newsticker--set-customvar-formatting
:group 'newsticker-reader)