Function: org-org-identity
org-org-identity is a byte-compiled function defined in ox-org.el.gz.
Signature
(org-org-identity BLOB CONTENTS INFO)
Documentation
Transcode BLOB element or object back into Org syntax.
CONTENTS is its contents, as a string or nil. INFO is ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-org.el.gz
(defun org-org-identity (blob contents _info)
"Transcode BLOB element or object back into Org syntax.
CONTENTS is its contents, as a string or nil. INFO is ignored."
(let ((case-fold-search t))
(replace-regexp-in-string
"^[ \t]*#\\+attr_[-_a-z0-9]+:\\(?: .*\\)?\n" ""
(org-export-expand blob contents t))))