diff --git a/contrib/lisp/org-e-ascii.el b/contrib/lisp/org-e-ascii.el index 56f543667..d68975ea4 100644 --- a/contrib/lisp/org-e-ascii.el +++ b/contrib/lisp/org-e-ascii.el @@ -1592,7 +1592,7 @@ CONTENTS is nil. INFO is a plist holding contextual information." (when (and caption org-e-ascii-caption-above) (concat caption "\n")) ;; Insert table. Note: "table.el" tables are left unmodified. (if (eq (org-element-property :type table) 'org) contents - (org-element-property :value table)) + (org-remove-indentation (org-element-property :value table))) ;; Possible add a caption string below. (when (and caption (not org-e-ascii-caption-above)) (concat "\n" caption)))))