From: "Olaf.Hamann" <O.Hamann@gmx.net>
To: Emacs-orgmode mailing list <emacs-orgmode@gnu.org>
Subject: [babel] would like to to do simple text block expansion with parameters or multiline macro replacement text
Date: Sat, 07 Apr 2012 19:22:00 +0200 [thread overview]
Message-ID: <4F8077B8.2010603@gmx.net> (raw)
Hello all,
I'm very happy with all the new features I discovered in org-babel
(since 6.8 or so) and played around a lot trying to convert my old
funnelweb-techniques (kind of LPstuff) into org-babel and now I'm a
little confused with all that elaborated stuff like header arguments,
result options :var types and function calls and so on :-)
Is there an easy way to do a simple text block expansion with
parameters, I mean sth like this:
#+begin_src xsl :tangle outputfile :noweb tangle
{{{gCV(argument1,param2)}}}
<<other_srcblockvalueWhenTangeling()>>
#+end_src
#+MACRO: gCV replacement text...
...spread over different...
...multiple lines with arguments like $1 ...
...and $2 and so on...
...
#+end_macro
Multiline macros did not work in my tries (Org version 7.8.03 with Emacs
version 24)
For expanding macros inside srcblocks I got this hint from the list some
time ago what works really fine:
#+begin_src emacs-lisp :results silent :exports none
(add-hook 'org-babel-tangle-body-hook
(lambda () (org-export-preprocess-apply-macros)))
#+end_src
Below I give an executable example in org-code. It's stripped down from
my work.
It works fine, but I would like to get rid of the lisp-concat and
string-quoting and wonder if org-mode does not offer another way.
Thank you very much in advance,
Olaf
====
* simple text block expansion with parameters
#+NAME: gCV(PDEF="param_pdef",XPATH="param_value")
#+begin_src emacs-lisp :results value :exports results :noweb tangle
(concat
" <xsl:when test=\"$pdef-identifier = '" PDEF "'\">
<xsl:value-of select=\"" XPATH "\" />
</xsl:when> " )
#+end_src
#+begin_src xsl :tangle mappings.xslt :noweb tangle
<xsl:variable name="oneOfMany">
<xsl:choose>
<<gCV("Condition001","$tree/some/node/@value")>>
<<gCV("Condition002","$tree/some/other/node/text()")>>
<xsl:otherwise/>
</xsl:choose>
</xsl:variable>
#+end_src
====
Output looks like expected:
<xsl:variable name="oneOfMany">
<xsl:choose>
<xsl:when test="$pdef-identifier = 'Condition001'">
<xsl:value-of select="$tree/some/node/@value" />
</xsl:when>
<xsl:when test="$pdef-identifier = 'Condition002'">
<xsl:value-of select="$tree/some/other/node/text()" />
</xsl:when>
<xsl:otherwise/>
</xsl:choose>
</variable>
next reply other threads:[~2012-04-07 17:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-07 17:22 Olaf.Hamann [this message]
2012-04-12 11:04 ` [babel] would like to to do simple text block expansion with parameters or multiline macro replacement text Olaf.Hamann
2012-04-21 11:09 ` Olaf.Hamann
2012-04-21 15:33 ` Eric Schulte
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=4F8077B8.2010603@gmx.net \
--to=o.hamann@gmx.net \
--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).