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.
This commit is contained in:
Nicolas Goaziou 2012-11-28 13:34:22 +01:00
parent d344fda27a
commit dbdbf53cd6
1 changed files with 5 additions and 4 deletions

View File

@ -362,11 +362,11 @@ e.g. \"email:t\"."
:type 'boolean) :type 'boolean)
(defcustom org-export-with-emphasize t (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 If the export target supports emphasizing text, the word will be
typeset in bold, italic, or underlined, respectively. Not all typeset in bold, italic, with an underline or strike-through,
export backends support this. respectively.
This option can also be set with the #+OPTIONS line, e.g. \"*:nil\"." This option can also be set with the #+OPTIONS line, e.g. \"*:nil\"."
:group 'org-export-general :group 'org-export-general
@ -2002,7 +2002,8 @@ a plist."
;; ... entities... ;; ... entities...
(entity (plist-get info :with-entities)) (entity (plist-get info :with-entities))
;; ... emphasis... ;; ... emphasis...
(emphasis (plist-get info :with-emphasize)) ((bold italic strike-through underline)
(plist-get info :with-emphasize))
;; ... fixed-width areas. ;; ... fixed-width areas.
(fixed-width (plist-get info :with-fixed-width)) (fixed-width (plist-get info :with-fixed-width))
;; ... footnotes... ;; ... footnotes...