Variable: org-feed-default-template

org-feed-default-template is a customizable variable defined in org-feed.el.gz.

Value

"\n* %h\n  %U\n  %description\n  %a\n"

Documentation

Template for the Org node created from RSS feed items.

This is just the default, each feed can specify its own. Any fields from the feed item can be interpolated into the template with
%name, for example %title, %description, %pubDate etc. In addition, the
following special escapes are valid as well:

%h The title, or the first line of the description
%t The date as a stamp, either from <pubDate> (if present), or
        the current date
%T Date and time
%u,%U Like %t,%T, but inactive time stamps
%a A link, from <guid> if that is a permalink, else from <link>
%(sexp) Evaluate elisp (sexp) and replace with the result, the simple
        %-escapes above can be used as arguments, e.g. %(capitalize \"%h\\")

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-feed.el.gz
(defcustom org-feed-default-template "\n* %h\n  %U\n  %description\n  %a\n"
  "Template for the Org node created from RSS feed items.
This is just the default, each feed can specify its own.
Any fields from the feed item can be interpolated into the template with
%name, for example %title, %description, %pubDate etc.  In addition, the
following special escapes are valid as well:

%h      The title, or the first line of the description
%t      The date as a stamp, either from <pubDate> (if present), or
        the current date
%T      Date and time
%u,%U   Like %t,%T, but inactive time stamps
%a      A link, from <guid> if that is a permalink, else from <link>
%(sexp) Evaluate elisp `(sexp)' and replace with the result, the simple
        %-escapes above can be used as arguments, e.g. %(capitalize \\\"%h\\\")"
  :group 'org-feed
  :type '(string :tag "Template"))