Variable: org-org-htmlized-css-url

org-org-htmlized-css-url is a customizable variable defined in ox-org.el.gz.

Value

nil

Documentation

URL pointing to the CSS defining colors for htmlized Emacs buffers.

Normally when creating an htmlized version of an Org buffer, htmlize will create the CSS to define the font colors. However, this does not work when converting in batch mode, and it also can look bad if different people with different fontification setup work on the same website. When this variable is non-nil, creating an htmlized version of an Org buffer using org-org-export-as-org will include a link to this URL if the setting of org-html-htmlize-output-type is css.

Aliases

org-export-htmlized-org-css-url (obsolete since 8.2)

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-org.el.gz
(defcustom org-org-htmlized-css-url nil
  "URL pointing to the CSS defining colors for htmlized Emacs buffers.
Normally when creating an htmlized version of an Org buffer,
htmlize will create the CSS to define the font colors.  However,
this does not work when converting in batch mode, and it also can
look bad if different people with different fontification setup
work on the same website.  When this variable is non-nil,
creating an htmlized version of an Org buffer using
`org-org-export-as-org' will include a link to this URL if the
setting of `org-html-htmlize-output-type' is `css'."
  :group 'org-export-org
  :type '(choice
	  (const :tag "Don't include external stylesheet link" nil)
	  (string :tag "URL or local href")))