Variable: org-publish-sitemap-file-entry-format

org-publish-sitemap-file-entry-format is a customizable variable defined in org-compat.el.gz.

This variable is obsolete since 9.1; set :sitemap-format-entry in org-publish-project-alist instead.

Value

"%t"

Documentation

Format string for site-map file entry.

You could use brackets to delimit on what part the link will be.

%t is the title.
%a is the author.
%d is the date formatted using org-publish-sitemap-date-format.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
(defcustom org-publish-sitemap-file-entry-format "%t"
  "Format string for site-map file entry.
You could use brackets to delimit on what part the link will be.

%t is the title.
%a is the author.
%d is the date formatted using `org-publish-sitemap-date-format'."
  :group 'org-export-publish
  :type 'string)