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