Variable: org-export-with-special-strings

org-export-with-special-strings is a customizable variable defined in ox.el.gz.

Value

t

Documentation

Non-nil means interpret "\\-", "--" and "---" for export.

When this option is turned on, these strings will be exported as:

   Org HTML LaTeX UTF-8
  -----+----------+--------+-------
   \- ­ \-
   -- – -- –
   --- — --- —
   ... … \ldots …

This option can also be set with the OPTIONS keyword, e.g. "-:nil".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-special-strings t
  "Non-nil means interpret \"\\-\", \"--\" and \"---\" for export.

When this option is turned on, these strings will be exported as:

   Org     HTML     LaTeX    UTF-8
  -----+----------+--------+-------
   \\-    ­      \\-
   --    –    --         –
   ---   —    ---        —
   ...   …   \\ldots     …

This option can also be set with the OPTIONS keyword,
e.g. \"-:nil\"."
  :group 'org-export-general
  :type 'boolean
  :safe #'booleanp)