emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [BABEL] Tangling to a hierarchy of files?
@ 2011-01-19  4:02 Christopher Maier
  2011-01-19  6:45 ` Charles C. Berry
  0 siblings, 1 reply; 15+ messages in thread
From: Christopher Maier @ 2011-01-19  4:02 UTC (permalink / raw)
  To: emacs-orgmode

I've been experimenting with literate programming using Org mode recently and am
really enjoying it.  I am trying to figure out the best way to create a nested
hierarchy of tangled files from a single Org file, and am not sure the best way
to go about it.

I know that, for example, this block, when tangled, will produce a file
"foo.clj" in the same directory as my Org file... so far so good.

#+begin_src clojure :tangle foo.clj
  (ns foo)
  
  (defn my-inc [x]
    (+ x 1))
#+end_src

However, I would like to be able to do something like this:

#+begin_src clojure :tangle src/foo.clj
  (ns foo)
  
  (defn my-inc [x]
    (+ x 1))
#+end_src

(I'm trying to automatically generate a Leiningen project for Clojure, if that
helps any.)

If I tangle an Org file that contains a block like this, and I haven't already
created a "src" directory, then I get an error ("Opening output file: No such
file or directory...").

I could create a shell script block in my file that will create whatever
directory hierarchy I need, but it looks like I'd have to manually execute that
prior to tangling my source code.  I've seen some examples on the mailing list
using Emacs Lisp code blocks to set up a custom org-babel-pre-tangle-hook, but
it still seems that there's a manual execution step required.

Is there a better (maybe already built-in?) way to achieve this?  Ideally, I'd
eventually like to set things up so that I could invoke a single function that
would create the file hierarchy, tangle the files, generate documentation, and
then run tests and other build-related stuff.  Is that possible without leaving
Org?

Thanks in advance for any help.

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2011-01-21  2:11 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-19  4:02 [BABEL] Tangling to a hierarchy of files? Christopher Maier
2011-01-19  6:45 ` Charles C. Berry
2011-01-19  7:22   ` Eric Schulte
2011-01-19 10:05     ` Rainer M Krug
2011-01-19 11:59       ` Chris Maier
2011-01-19 12:06         ` Rainer M Krug
2011-01-19 16:20         ` Charles C. Berry
2011-01-19 16:27           ` Chris Maier
2011-01-19 17:41         ` Eric Schulte
2011-01-19 18:18           ` Chris Maier
2011-01-20  3:37             ` Eric Schulte
2011-01-20 10:06               ` Rainer M Krug
2011-01-21  2:11               ` Chris Maier
2011-01-20  9:09           ` Christopher Witte
2011-01-20 16:11             ` Eric Schulte

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).