Function: org-feed-make-indented-block
org-feed-make-indented-block is a byte-compiled function defined in
org-feed.el.gz.
Signature
(org-feed-make-indented-block S N)
Documentation
Add indentation of N spaces to a multiline string S.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-feed.el.gz
(defun org-feed-make-indented-block (s n)
"Add indentation of N spaces to a multiline string S."
(if (not (string-match "\n" s))
s
(mapconcat 'identity
(org-split-string s "\n")
(concat "\n" (make-string n ?\ )))))