Variable: newsticker-heading-format
newsticker-heading-format is a customizable variable defined in
newst-plainview.el.gz.
Value
"%l\n%t %d %s"
Documentation
Format string for feed headings.
The following printf-like specifiers can be used:
%d The date the feed was retrieved. See newsticker-date-format.
%l The logo (image) of the feed. Most news feeds provide a small
image as logo. Newsticker can display them, if Emacs can --
see image-types for a list of supported image types.
%L The logo (image) of the feed. If the logo is not available
the title of the feed is used.
%s The statistical data of the feed. See newsticker-statistics-format.
%t The title of the feed, i.e. its name.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-plainview.el.gz
(defcustom newsticker-heading-format
"%l
%t %d %s"
"Format string for feed headings.
The following printf-like specifiers can be used:
%d The date the feed was retrieved. See `newsticker-date-format'.
%l The logo (image) of the feed. Most news feeds provide a small
image as logo. Newsticker can display them, if Emacs can --
see `image-types' for a list of supported image types.
%L The logo (image) of the feed. If the logo is not available
the title of the feed is used.
%s The statistical data of the feed. See `newsticker-statistics-format'.
%t The title of the feed, i.e. its name."
:type 'string
:set #'newsticker--set-customvar-formatting
:group 'newsticker-plainview)