Variable: org-odt-special-string-regexps
org-odt-special-string-regexps is a variable defined in ox-odt.el.gz.
Value
(("\\\\-" . "­\\1") ("---\\([^-]\\)" . "—\\1")
("--\\([^-]\\)" . "–\\1") ("\\.\\.\\." . "…"))
Documentation
Regular expressions for special string conversion.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defconst org-odt-special-string-regexps
'(("\\\\-" . "­\\1") ; shy
("---\\([^-]\\)" . "—\\1") ; mdash
("--\\([^-]\\)" . "–\\1") ; ndash
("\\.\\.\\." . "…")) ; hellip
"Regular expressions for special string conversion.")