On Wed, 20 Jul 2016, Xebar Saram wrote:

thx for the tips!

when i try to run the source block :

#+BEGIN_SRC emacs-lisp :results silent
 (replace-regexp "^=[{]r \\([^}]*\\)[}]\\(.*\\)=$"
                 "#+name: \\1
 ,#+begin_src R
 \\2
 ,#+end_src")

#+END_SRC

i just get a nil in the message area. what am i missing?



Nothing!

The `:results silent' should suppress any output.

Anyway, what you should see is that the code chunks that pandoc placed inside equal signs like

: ={r my-name} code =

are now in src blocks.

I think you need to put the src block at the top or add a

: (goto-char (point-min))

as its first line to be sure it converts all the code chunks.


Chuck

Reply via email to