From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: javascript:; Re: Is there a new method to set no line break when export to plain text Date: Mon, 18 May 2015 13:40:19 +0200 Message-ID: <87wq06ru58.fsf@nicolasgoaziou.fr> References: <72a65cce.289.14d657a5469.Coremail.chxp_moon@163.com> <87h9ra73rp.fsf@nicolasgoaziou.fr> <1be3a7d0.3ee.14d66458dc7.Coremail.chxp_moon@163.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuJNp-0003EW-L1 for emacs-orgmode@gnu.org; Mon, 18 May 2015 07:38:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YuJNo-0006eX-AX for emacs-orgmode@gnu.org; Mon, 18 May 2015 07:38:57 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:60311) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuJNo-0006e5-4q for emacs-orgmode@gnu.org; Mon, 18 May 2015 07:38:56 -0400 In-Reply-To: <1be3a7d0.3ee.14d66458dc7.Coremail.chxp_moon@163.com> (windy's message of "Mon, 18 May 2015 17:05:43 +0800 (CST)") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: windy Cc: emacs-orgmode windy 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,