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
  '(("\\\\-" . "­")		; shy
    ("---\\([^-]\\)" . "—\\1")	; mdash
    ("--\\([^-]\\)" . "–\\1")	; ndash
    ("\\.\\.\\." . "…"))		; hellip
  "Regular expressions for special string conversion.")