windy <[email protected]> writes: > I am sorry for that but how to set the variable ? I totally know > nothing about emacs elisp. > > maybe I must to learn it in some day. I try (setq > org-export-filter-paragraph-functions nil) seems no working
Something like this
(defun my-ascii-unfill-paragraph (text backend info)
(and (eq backend 'ascii) (replace-regexp-in-string "\n *" " " text)))
(add-to-list 'org-export-filter-paragraph-functions
#'my-ascii-unfill-paragraph)
Regards,
