Variable: org-odt-with-forbidden-chars

org-odt-with-forbidden-chars is a customizable variable defined in ox-odt.el.gz.

Value

""

Documentation

String to replace forbidden XML characters.

When set to t, forbidden characters are left as-is. When set to nil, an error is thrown. See org-odt-forbidden-char-re for the list of forbidden characters that cannot occur inside ODT documents.

You may also consider export filters to perform more fine-grained replacements. See info node (org)Advanced Export Configuration.

This variable was added, or its default value changed, in Org version
9.8.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defcustom org-odt-with-forbidden-chars ""
  "String to replace forbidden XML characters.
When set to t, forbidden characters are left as-is.
When set to nil, an error is thrown.
See `org-odt-forbidden-char-re' for the list of forbidden characters
that cannot occur inside ODT documents.

You may also consider export filters to perform more fine-grained
replacements.  See info node `(org)Advanced Export Configuration'."
  :package-version '(Org . "9.8")
  :type '(choice (const :tag "Leave forbidden characters as-is" t)
                 (const :tag "Err when forbidden characters encountered" nil)
                 (string :tag "Replacement string"))
  :safe #'always)