Variable: newsticker-justification
newsticker-justification is a customizable variable defined in
newst-reader.el.gz.
Value
left
Documentation
How to fill item descriptions.
If non-nil newsticker calls fill-region to wrap long lines in
item descriptions. However, if an item description contains HTML
text and newsticker-html-renderer is non-nil, filling is not
done.
Source Code
;; Defined in /usr/src/emacs/lisp/net/newst-reader.el.gz
(defcustom newsticker-justification
'left
"How to fill item descriptions.
If non-nil newsticker calls `fill-region' to wrap long lines in
item descriptions. However, if an item description contains HTML
text and `newsticker-html-renderer' is non-nil, filling is not
done."
:type '(choice :tag "Justification"
(const :tag "No filling" nil)
(const :tag "Left" left)
(const :tag "Right" right)
(const :tag "Center" center)
(const :tag "Full" full))
:set #'newsticker--set-customvar-formatting
:group 'newsticker-reader)