Function: org-remove-blank-lines
org-remove-blank-lines is a byte-compiled function defined in
org-macs.el.
Signature
(org-remove-blank-lines S)
Documentation
Remove blank lines in S.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-remove-blank-lines (s)
"Remove blank lines in S."
(replace-regexp-in-string (rx "\n" (1+ (0+ space) "\n")) "\n" s))