Variable: org-html-infojs-options
org-html-infojs-options is a customizable variable defined in
ox-html.el.gz.
Value
((path . "https://orgmode.org/org-info.js")
(view . "info")
(toc . :with-toc)
(ftoc . "0")
(tdepth . "max")
(sdepth . "max")
(mouse . "underline")
(buttons . "0")
(ltoc . "1")
(up . :html-link-up)
(home . :html-link-home))
Documentation
Options settings for the INFOJS JavaScript.
Each of the options must have an entry in org-html-infojs-opts-table.
The value can either be a string that will be passed to the script, or
a property. This property is then assumed to be a property that is defined
by the Export/Publishing setup of Org.
The sdepth and tdepth parameters can also be set to "max", which
means to use the maximum value consistent with other options.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-infojs-options
(mapcar (lambda (x) (cons (car x) (nth 2 x))) org-html-infojs-opts-table)
"Options settings for the INFOJS JavaScript.
Each of the options must have an entry in `org-html-infojs-opts-table'.
The value can either be a string that will be passed to the script, or
a property. This property is then assumed to be a property that is defined
by the Export/Publishing setup of Org.
The `sdepth' and `tdepth' parameters can also be set to \"max\", which
means to use the maximum value consistent with other options."
:group 'org-export-html
:version "24.4"
:package-version '(Org . "8.0")
:type
`(set :greedy t :inline t
,@(mapcar
(lambda (x)
(list 'cons (list 'const (car x))
'(choice
(symbol :tag "Publishing/Export property")
(string :tag "Value"))))
org-html-infojs-opts-table)))