From: Nicolas Goaziou Date: Wed, 28 Nov 2012 12:34:22 +0000 (+0100) Subject: org-export: Fix *:nil export option X-Git-Tag: release_8.0-pre~778 X-Git-Url: https://repo.or.cz/w/org-mode.git/commitdiff_plain/dbdbf53cd69c2bcbab1cbef8c84ed5196de95885 org-export: Fix *:nil export option * contrib/lisp/org-export.el (org-export--interpret-p): Fix *:nil export option. (org-export-with-emphasize): Update docstring. --- diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index e8227650f..259710962 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -362,11 +362,11 @@ e.g. \"email:t\"." :type 'boolean) (defcustom org-export-with-emphasize t - "Non-nil means interpret *word*, /word/, and _word_ as emphasized text. + "Non-nil means interpret *word*, /word/, _word_ and +word+. If the export target supports emphasizing text, the word will be -typeset in bold, italic, or underlined, respectively. Not all -export backends support this. +typeset in bold, italic, with an underline or strike-through, +respectively. This option can also be set with the #+OPTIONS line, e.g. \"*:nil\"." :group 'org-export-general @@ -2002,7 +2002,8 @@ a plist." ;; ... entities... (entity (plist-get info :with-entities)) ;; ... emphasis... - (emphasis (plist-get info :with-emphasize)) + ((bold italic strike-through underline) + (plist-get info :with-emphasize)) ;; ... fixed-width areas. (fixed-width (plist-get info :with-fixed-width)) ;; ... footnotes...