Variable: org-ascii-paragraph-spacing

org-ascii-paragraph-spacing is a customizable variable defined in ox-ascii.el.gz.

Value

auto

Documentation

Number of white lines between paragraphs.

If the value is an integer, add this number of blank lines between contiguous paragraphs. If is it the symbol auto, keep the same number of blank lines as in the original document.

This variable was added, or its default value changed, in Org version
8.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
(defcustom org-ascii-paragraph-spacing 'auto
  "Number of white lines between paragraphs.
If the value is an integer, add this number of blank lines
between contiguous paragraphs.  If is it the symbol `auto', keep
the same number of blank lines as in the original document."
  :group 'org-export-ascii
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(choice
	  (integer :tag "Number of blank lines")
	  (const :tag "Preserve original spacing" auto)))