Function: org-export-raw-string

org-export-raw-string is an autoloaded and byte-compiled function defined in ox.el.gz.

Signature

(org-export-raw-string S)

Documentation

Return a raw object containing string S.

A raw string is exported as-is, with no additional processing from the export backend.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
;;;; For Raw objects
;;
;; `org-export-raw-string' builds a pseudo-object out of a string
;; that any export backend returns as-is.

;;;###autoload
(defun org-export-raw-string (s)
  "Return a raw object containing string S.
A raw string is exported as-is, with no additional processing
from the export backend."
  (unless (stringp s) (error "Wrong raw contents type: %S" s))
  (org-element-create 'raw nil s))