Function: org-icalendar-clear-blank-lines
org-icalendar-clear-blank-lines is a byte-compiled function defined in
ox-icalendar.el.gz.
Signature
(org-icalendar-clear-blank-lines HEADLINE BACKEND INFO)
Documentation
Remove blank lines in HEADLINE export.
HEADLINE is a string representing a transcoded headline. BACKEND and INFO are ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-icalendar.el.gz
;;; Filters
(defun org-icalendar-clear-blank-lines (headline _backend _info)
"Remove blank lines in HEADLINE export.
HEADLINE is a string representing a transcoded headline.
BACKEND and INFO are ignored."
(replace-regexp-in-string "^\\(?:[ \t]*\n\\)+" "" headline))