emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: Sean O'Halpin <sean.ohalpin@gmail.com>
Cc: Sebastien Vauban <sva-news@mygooglest.com>,
	Org Mode <emacs-orgmode@gnu.org>
Subject: Re: How do I specify the language for a :results code block
Date: Wed, 04 Dec 2013 14:18:50 +0100	[thread overview]
Message-ID: <m2iov4bvph.fsf@polytechnique.org> (raw)
In-Reply-To: <CAOXM+eWdn-MR=ufvsVSHtWoxmp1MKKWwBkbLqV1T5UV19SZPeg@mail.gmail.com>

Hi Sean,

sean.ohalpin@gmail.com writes:

> Taking a slightly different approach, you could use the :post header
> argument to wrap the results in a source block.
>
> See http://orgmode.org/org.html#post (from which the example below is derived).
>
> For example, you could use something like this:
>
>   #+OPTIONS: d:RESULTS
>
>   * Example
>
>   #+name: eg-1
>   #+begin_src sh :results replace drawer :exports results :post
> wrap-src(text=*this*)
>   head -n 3 demo.v
>   #+end_src
>
>   Output
>   #+results: eg-1
>
>   * Utils                                                           :noexport:
>   #+name: wrap-src
>   #+begin_src emacs-lisp :var text="" :results raw
>   (concat "#+BEGIN_SRC coq\n" text "\n#+END_SRC")
>   #+end_src

Thank you for the suggestion. Unfortunately I get the same problem than
with "wrap": if the results are present, they become duplicated in the
export. Here is a small example showing it:

--8<---------------cut here---------------start------------->8---
#+name: mywrap
#+BEGIN_SRC sh :exports none :results raw
echo "(+ 1 2)"
#+END_SRC

Exporting using ~:post~

#+name: wrap-src
#+BEGIN_SRC emacs-lisp :var text="" :results raw :exports none
(concat "#+BEGIN_SRC emacs-lisp\n" text "\n#+END_SRC")
#+END_SRC

#+name: test4
#+call: mywrap() :post wrap-src(text=*this*) :results raw

#+RESULTS: test4
#+BEGIN_SRC emacs-lisp
(+ 1 2)

#+END_SRC
--8<---------------cut here---------------end--------------->8---

If you export this, you will see some duplication of the test4 block.

Your example showed more than the ~:post~ approach: there is also the
use of a drawer. And this solves my export problem (with a drawer,
things are not duplicated). Thanks a lot! (I tried to apply the drawer
trick to the :wrap src but it does not work, unfortunately. I like your
approach better anyway as it allows me to specify not only the language
used by the output source block, but other properties (such as whether
it should be evaluated) which wrap does not let me do.)

> BTW I answered a question similar to this on Stack Overflow recently
> (http://stackoverflow.com/questions/20194347/org-mode-with-code-example-as-html/20232922#20232922)
> - must be something in the air.

I grabbed some additional information from there, and this is what I
ended up with. Thanks again for the help.

--8<---------------cut here---------------start------------->8---
#+OPTIONS: d:RESULTS

* utilities                                                        :noexport:
#+name: fetchfile
#+BEGIN_SRC sh :exports none :results raw :var f="foo.v"
head $f
#+END_SRC

#+name: wrap-coq
#+BEGIN_SRC emacs-lisp :var text="" :results raw
(concat "#+BEGIN_SRC coq\n" text "\n#+END_SRC")
#+END_SRC

* example
:PROPERTIES:
:results: drawer
:post: wrap-coq(text=*this*)
:END:

#+call: fetchfile("demo.v")

#+RESULTS:
:RESULTS:
#+BEGIN_SRC coq
Definition toto : forall x, exists y, x = y.

Lemma foo: forall x, x=x.
#+END_SRC
:END:
--8<---------------cut here---------------end--------------->8---

Alan

  reply	other threads:[~2013-12-04 13:19 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-29 21:49 How do I specify the language for a :results code block Alan Schmitt
2013-11-29 22:10 ` Thomas S. Dye
2013-11-29 23:48   ` Charles Berry
2013-11-30 10:52     ` Alan Schmitt
2013-11-30 16:57       ` Thomas S. Dye
2013-12-02 10:41         ` Alan Schmitt
2013-12-02 11:27           ` Sebastien Vauban
2013-12-02 13:04             ` Alan Schmitt
2013-12-02 18:09               ` Sean O'Halpin
2013-12-04 13:18                 ` Alan Schmitt [this message]
2013-12-04 20:06                   ` Fabrice Niessen
2013-12-05 12:33                     ` Alan Schmitt
2013-12-02 16:53           ` Thomas S. Dye
2013-12-04 12:35             ` Alan Schmitt

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=m2iov4bvph.fsf@polytechnique.org \
    --to=alan.schmitt@polytechnique.org \
    --cc=emacs-orgmode@gnu.org \
    --cc=sean.ohalpin@gmail.com \
    --cc=sva-news@mygooglest.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).