emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: w t <1218121@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Simple Literate Programming Example
Date: Thu, 27 May 2010 16:43:38 -0700	[thread overview]
Message-ID: <AANLkTimLo1Sov2epY_dS4ppmMEscGjhClthkWpti8FId@mail.gmail.com> (raw)

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.

             reply	other threads:[~2010-05-27 23:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-27 23:43 w t [this message]
2010-05-27 23:59 ` Simple Literate Programming Example Thomas S. Dye
2010-05-28  3:32   ` w t

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=AANLkTimLo1Sov2epY_dS4ppmMEscGjhClthkWpti8FId@mail.gmail.com \
    --to=1218121@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /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).