Date: %d
Generated by %c
%v
")) "The format for the HTML postamble. %a stands for the author's name. %e stands for the author's email. %d stands for the date. %c will be replaced by information about Org/Emacs versions. %v will be replaced by `org-e-html-validation-link'. If you need to use a \"%\" character, you need to escape it like that: \"%%\"." :group 'org-export-e-html :type 'string) (defcustom org-e-html-validation-link "Validate XHTML 1.0" "Link to HTML validation service." :group 'org-export-e-html :type 'string) ;; FIXME Obsolete since Org 7.7 ;; Use the :timestamp option or `org-export-time-stamp-file' instead ;;;; Emphasis (defcustom org-e-html-protect-char-alist '(("&" . "&") ("<" . "<") (">" . ">")) "Alist of characters to be converted by `org-e-html-protect'." :group 'org-export-e-html :type '(repeat (cons (string :tag "Character") (string :tag "HTML equivalent")))) (defconst org-e-html-special-string-regexps '(("\\\\-" . "") ("---\\([^-]\\)" . "—\\1") ("--\\([^-]\\)" . "–\\1") ("\\.\\.\\." . "…")) "Regular expressions for special string conversion.") ;;;; Todos (defcustom org-e-html-todo-kwd-class-prefix "" "Prefix to class names for TODO keywords. Each TODO keyword gets a class given by the keyword itself, with this prefix. The default prefix is empty because it is nice to just use the keyword as a class name. But if you get into conflicts with other, existing CSS classes, then this prefix can be very useful." :group 'org-export-e-html :type 'string) ;;;; Tags (defcustom org-e-html-tag-class-prefix "" "Prefix to class names for TODO keywords. Each tag gets a class given by the tag itself, with this prefix. The default prefix is empty because it is nice to just use the keyword as a class name. But if you get into conflicts with other, existing CSS classes, then this prefix can be very useful." :group 'org-export-e-html :type 'string) ;;;; Time-stamps ;;;; Statistics Cookie ;;;; Subscript ;;;; Superscript ;;;; Inline images (defcustom org-e-html-inline-images 'maybe "Non-nil means inline images into exported HTML pages. This is done using an tag. When nil, an anchor with href is used to link to the image. If this option is `maybe', then images in links with an empty description will be inlined, while images with a description will be linked only." :group 'org-export-e-html :type '(choice (const :tag "Never" nil) (const :tag "Always" t) (const :tag "When there is no description" maybe))) (defcustom org-e-html-inline-image-extensions '("png" "jpeg" "jpg" "gif" "svg") "Extensions of image files that can be inlined into HTML." :group 'org-export-e-html :type '(repeat (string :tag "Extension"))) ;;;; Block ;;;; Comment ;;;; Comment Block ;;;; Drawer ;;;; Dynamic Block ;;;; Emphasis ;;;; Entity ;;;; Example Block ;;;; Export Snippet ;;;; Export Block ;;;; Fixed Width ;;;; Footnotes (defcustom org-e-html-footnotes-section "" . " | ") "The opening tag for table header fields. This is customizable so that alignment options can be specified. The first %s will be filled with the scope of the field, either row or col. The second %s will be replaced by a style entry to align the field. See also the variable `org-e-html-table-use-header-tags-for-first-column'. See also the variable `org-e-html-table-align-individual-fields'." :group 'org-export-tables ; FIXME: change group? :type '(cons (string :tag "Opening tag") (string :tag "Closing tag"))) (defcustom org-e-html-table-data-tags '("" . " | ") "The opening tag for table data fields. This is customizable so that alignment options can be specified. The first %s will be filled with the scope of the field, either row or col. The second %s will be replaced by a style entry to align the field. See also the variable `org-e-html-table-align-individual-fields'." :group 'org-export-tables :type '(cons (string :tag "Opening tag") (string :tag "Closing tag"))) (defcustom org-e-html-table-row-tags '("
---|