From dbdbf53cd69c2bcbab1cbef8c84ed5196de95885 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 28 Nov 2012 13:34:22 +0100 Subject: [PATCH] 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. --- contrib/lisp/org-export.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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... -- 2.11.4.GIT