Variable: org-export-with-smart-quotes
org-export-with-smart-quotes is a customizable variable defined in
ox.el.gz.
Value
nil
Documentation
Non-nil means activate smart quotes during export.
This option can also be set with the OPTIONS keyword, e.g., "\\=':t".
When setting this to non-nil, you need to take care of using the correct Babel package when exporting to LaTeX. E.g., you can load Babel for french like this:
#+LATEX_HEADER: \usepackage[french]{babel}
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-with-smart-quotes nil
"Non-nil means activate smart quotes during export.
This option can also be set with the OPTIONS keyword,
e.g., \"\\=':t\".
When setting this to non-nil, you need to take care of
using the correct Babel package when exporting to LaTeX.
E.g., you can load Babel for french like this:
#+LATEX_HEADER: \\usepackage[french]{babel}"
:group 'org-export-general
:version "24.4"
:package-version '(Org . "8.0")
:type 'boolean
:safe #'booleanp)