Variable: org-agenda-exporter-settings

org-agenda-exporter-settings is a customizable variable defined in org-agenda.el.gz.

Value

nil

Documentation

Alist of variable/value pairs that should be active during agenda export.

This is a good place to set options for ps-print and for htmlize. Note that the way this is implemented, the values will be evaluated before assigned to the variables. So make sure to quote values you do
*not* want evaluated, for example

   (setq org-agenda-exporter-settings
         '((ps-print-color-p 'black-white)))

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defcustom org-agenda-exporter-settings nil
  ;; FIXME: Do we really want to evaluate those settings and thus force
  ;; the user to use `quote' all the time?
  "Alist of variable/value pairs that should be active during agenda export.
This is a good place to set options for ps-print and for htmlize.
Note that the way this is implemented, the values will be evaluated
before assigned to the variables.  So make sure to quote values you do
*not* want evaluated, for example

   (setq org-agenda-exporter-settings
         \\='((ps-print-color-p \\='black-white)))"
  :group 'org-agenda-export
  :type '(repeat
	  (list
	   (variable)
	   (sexp :tag "Value"))))