emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Myles English <mylesenglish@gmail.com>
To: Michael Bach <phaebz@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: Import files to babel blocks
Date: Sun, 21 Jul 2013 11:31:57 +0100	[thread overview]
Message-ID: <87txjoi4pu.fsf@gmail.com> (raw)
In-Reply-To: <ksg6rt$q7f$1@ger.gmane.org>


Hi Michael,

Michael Bach writes:

> Dear org-mode Users and Developers,
>
> I am trying to write a simple function for importing files to org-mode
> babel code blocks.
>
> My naive approach was
>
> --8<---------------cut here---------------start------------->8---
> (defun import-to-org-from-files (path pattern progmode)
>   (mapcar #'(lambda (filepath)
>               (progn
>                 (insert (format
>                          "\n#+name: %s\n" (file-name-nondirectory
>                                            (file-name-sans-extension
>                                             filepath))))
>                 (insert (format "#+begin_src: %s :eval no\n" progmode))
>                 (insert-file-contents filepath)

From the documentation (C-h f insert-file-contents), it says that it
"returns list of absolute file name and number of characters" but
doesn't move the marker forwards, unlike insert does.  So, I guess you
would have to then move the marker forwards by the number of characters.

>                 (insert "\n#+end_src\n"))
>               )
>           (directory-files path t pattern)))
> --8<---------------cut here---------------end--------------->8---

Myles

  reply	other threads:[~2013-07-21 10:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-21  8:41 Import files to babel blocks Michael Bach
2013-07-21 10:31 ` Myles English [this message]
2013-07-24 23:00   ` Michael Bach

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87txjoi4pu.fsf@gmail.com \
    --to=mylesenglish@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=phaebz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).