Variable: org-archive-file-header-format

org-archive-file-header-format is a customizable variable defined in org-archive.el.gz.

Value

"\nArchived entries from file %s\n\n"

Documentation

The header format string for newly created archive files.

When nil, no header will be inserted. When a string, a %s formatter will be replaced by the file name.

This variable was added, or its default value changed, in Org version
8.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-archive.el.gz
(defcustom org-archive-file-header-format "\nArchived entries from file %s\n\n"
  "The header format string for newly created archive files.
When nil, no header will be inserted.
When a string, a %s formatter will be replaced by the file name."
  :group 'org-archive
  :version "24.4"
  :package-version '(Org . "8.0")
  :type 'string)