Variable: org-ctags-new-topic-template

org-ctags-new-topic-template is a customizable variable defined in org-ctags.el.gz.

Value

"* <<%t>>\n\n\n\n\n\n"

Documentation

Text to insert when creating a new org file via opening a hyperlink.

The following patterns are replaced in the string:
    %t - replaced with the capitalized title of the hyperlink

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defcustom org-ctags-new-topic-template
  "* <<%t>>\n\n\n\n\n\n"
  "Text to insert when creating a new org file via opening a hyperlink.
The following patterns are replaced in the string:
    `%t' - replaced with the capitalized title of the hyperlink"
  :version "24.1"
  :type 'string)