Gerando saída em um idioma diferente com o modo organizacional

14

Dado o seguinte, pretende-se gerar código C ++:

#+BEGIN_SRC python :exports both :results output code
print "struct Whatever{};"
#+END_SRC

O resultado é inserido da seguinte maneira:

#+RESULTS:
#+BEGIN_SRC python
struct Whatever{};
#+END_SRC

O que claramente não está formatado como C ++. Como consegui-lo para que a organização gere o seguinte:

#+RESULTS:
#+BEGIN_SRC c++
struct Whatever{};
#+END_SRC

obrigado

cheez
fonte

Respostas:

15

Entendi:

#BEGIN_SRC python :exports both :results output code :wrap "SRC c++"
cheez
fonte
3
Para quem quer que que é documentada, é orgmode.org/manual/wrap.html
ADL