* Simple Literate Programming Example
@ 2010-05-27 23:43 w t
2010-05-27 23:59 ` Thomas S. Dye
0 siblings, 1 reply; 3+ messages in thread
From: w t @ 2010-05-27 23:43 UTC (permalink / raw)
To: emacs-orgmode
I put the "Simple Literate Programming Example" from the Org-Babel
Introduction in a file hello.org, namely,
==================hello.org===========================
#+srcname: hello-world-prefix
#+begin_src sh :exports none
echo "/-----------------------------------------------------------\\"
#+end_src
#+srcname: hello-world-postfix
#+begin_src sh :exports none
echo "\-----------------------------------------------------------/"
#+end_src
#+srcname: hello-world
#+begin_src sh :tangle hello :exports none
# <<hello-world-prefix>>
echo "| hello world |"
# <<hello-world-postfix>>
#+end_src
==================end=hello.org===========================
Then I do "M-x org-babel-tangle", and this generates the file hello:
=================begin=hello============================
#!/usr/bin/env sh
# [[file:~/ORG/hello.org][hello-world]]
# <<hello-world-prefix>>
echo "| hello world |"
# <<hello-world-postfix>>
# hello-world ends here
==================end=hello=============================
which does not seem to jive with the Introduction, which, among other
things, says the <<*>>'s should expand. I've seen other examples
where the #'s are removed from before the <<*>>'s, but this does not
seem to matter. Any ideas on what I'm missing? My .emacs file is
==============begin=.emacs=============================
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
(setq load-path (cons "/tmp/org-mode/lisp" load-path))
(setq load-path (cons "/tmp/org-mode/contrib/lisp" load-path))
(require 'org-babel-init)
(require 'org-babel-sh)
(org-babel-load-library-of-babel)
=============end=.emacs=================================
and the "/tmp/org-mode/" is a Git directory from today.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Simple Literate Programming Example
2010-05-27 23:43 Simple Literate Programming Example w t
@ 2010-05-27 23:59 ` Thomas S. Dye
2010-05-28 3:32 ` w t
0 siblings, 1 reply; 3+ messages in thread
From: Thomas S. Dye @ 2010-05-27 23:59 UTC (permalink / raw)
To: w t; +Cc: emacs-orgmode
On May 27, 2010, at 1:43 PM, w t wrote:
> I put the "Simple Literate Programming Example" from the Org-Babel
> Introduction in a file hello.org, namely,
>
> ==================hello.org===========================
> #+srcname: hello-world-prefix
> #+begin_src sh :exports none
> echo "/-----------------------------------------------------------\\"
> #+end_src
>
> #+srcname: hello-world-postfix
> #+begin_src sh :exports none
> echo "\-----------------------------------------------------------/"
> #+end_src
>
> #+srcname: hello-world
> #+begin_src sh :tangle hello :exports none
> # <<hello-world-prefix>>
> echo "| hello world |"
> # <<hello-world-postfix>>
> #+end_src
> ==================end=hello.org===========================
>
> Then I do "M-x org-babel-tangle", and this generates the file hello:
>
> =================begin=hello============================
> #!/usr/bin/env sh
>
> # [[file:~/ORG/hello.org][hello-world]]
>
> # <<hello-world-prefix>>
> echo "| hello world |"
> # <<hello-world-postfix>>
> # hello-world ends here
> ==================end=hello=============================
>
> which does not seem to jive with the Introduction, which, among other
> things, says the <<*>>'s should expand. I've seen other examples
> where the #'s are removed from before the <<*>>'s, but this does not
> seem to matter. Any ideas on what I'm missing? My .emacs file is
>
> ==============begin=.emacs=============================
> (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
> (global-set-key "\C-cl" 'org-store-link)
> (global-set-key "\C-ca" 'org-agenda)
> (global-set-key "\C-cb" 'org-iswitchb)
>
> (setq load-path (cons "/tmp/org-mode/lisp" load-path))
>
> (setq load-path (cons "/tmp/org-mode/contrib/lisp" load-path))
> (require 'org-babel-init)
> (require 'org-babel-sh)
> (org-babel-load-library-of-babel)
> =============end=.emacs=================================
>
> and the "/tmp/org-mode/" is a Git directory from today.
>
Hi w t,
Thanks for pointing this out.
I believe you'll need to add the :noweb yes header argument to code
blocks that include <<>> to be expanded.
I'll update the example on Worg to reflect this newer feature of Org-
babel.
All the best,
Tom
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Simple Literate Programming Example
2010-05-27 23:59 ` Thomas S. Dye
@ 2010-05-28 3:32 ` w t
0 siblings, 0 replies; 3+ messages in thread
From: w t @ 2010-05-28 3:32 UTC (permalink / raw)
To: emacs-orgmode
On 5/27/10, Thomas S. Dye <tsd@tsdye.com> wrote:
> I believe you'll need to add the :noweb yes header argument to code
> blocks that include <<>> to be expanded.
>
> I'll update the example on Worg to reflect this newer feature of Org-
> babel.
>
> All the best,
> Tom
>
Thank you, things now work.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-05-28 3:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-27 23:43 Simple Literate Programming Example w t
2010-05-27 23:59 ` Thomas S. Dye
2010-05-28 3:32 ` w t
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).