Function: org-strip-quotes

org-strip-quotes is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-strip-quotes STRING)

Documentation

Strip double quotes from around STRING, if applicable.

If STRING is nil, return nil.

Aliases

org-remove-double-quotes (obsolete since 9.0) org-babel-strip-quotes (obsolete since 9.2)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-strip-quotes (string)
  "Strip double quotes from around STRING, if applicable.
If STRING is nil, return nil."
  (org-unbracket-string "\"" "\"" string))