[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] javascript:; Re: Is there a new method to set no line break when
From: |
Nicolas Goaziou |
Subject: |
Re: [O] 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 |
windy <address@hidden> 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,