Function: org-publish-sitemap-default
org-publish-sitemap-default is a byte-compiled function defined in
ox-publish.el.gz.
Signature
(org-publish-sitemap-default TITLE LIST)
Documentation
Default site map, as a string.
TITLE is the title of the site map. LIST is an internal
representation for the files to include, as returned by
org-list-to-lisp. PROJECT is the current project.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-publish.el.gz
(defun org-publish-sitemap-default (title list)
"Default site map, as a string.
TITLE is the title of the site map. LIST is an internal
representation for the files to include, as returned by
`org-list-to-lisp'. PROJECT is the current project."
(concat "#+TITLE: " title "\n\n"
(org-list-to-org list)))