emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] export to txt files


From: Dimitris Kapetanakis
Subject: Re: [Orgmode] export to txt files
Date: Tue, 18 Mar 2008 07:02:44 +0200

THANKS EVERYBODY

I was looking at something like Hugo's response. It is a click away since it saves under a "heading.txt" the next heading's text. I am trying to take a look at it with my poor knowledge of Lisp.

2008/3/17, Hugo Schmitt <address@hidden>:
Hm, I guess I sent this only to Dimitri... I'm resending it to the list..

This seems to do what you want.


(defun org-export-top-levels ()
  (interactive)
  (goto-char (point-min))
  (let (start (point))
       (while (re-search-forward "^* " nil t)
         (write-region start (point-at-bol) (concat (org-get-heading) ".txt"))
         (setq start (point-at-bol)))))

Regards,
Hugo


On Mon, Mar 17, 2008 at 4:43 PM, Daniel Clemente <address@hidden> wrote:
>
>   Mmmm... I wrote a program which can do this:
>   http://www.danielclemente.com/dislines/index.en.html
>
>   however it's not LISP.
>   I have written multilingual org files this way, but it's not comfortable since it requires several programs and processing phases. I am still looking for a solution in Emacs LISP, and if possible, one which integrates nicely with org-mode :-)
>
>
>
>
>

>  _______________________________________________
>  Emacs-orgmode mailing list
>  Remember: use `Reply All' to send replies to the list.
>  address@hidden
>  http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]