[O] Getting rid of the #+begin_example #+end_example in src blocks evaluation

2015-08-27 Thread Julien Cubizolles
I'm trying to create a list of entries with timeshifts. I found this very nice example: #+begin_src emacs-lisp (with-temp-buffer (insert *** Cours 2014-09-07 lun 8:45-12:00) (goto-char (point-min)) (org-clone-subtree-with-time-shift 30 +1w) ;; ignore this (let ((str (buffer-string)))

Re: [O] Getting rid of the #+begin_example #+end_example in src blocks evaluation

2015-08-27 Thread John Kitchin
Put :results raw in the src header? On Thursday, August 27, 2015, Julien Cubizolles j.cubizol...@free.fr wrote: I'm trying to create a list of entries with timeshifts. I found this very nice example: #+begin_src emacs-lisp (with-temp-buffer (insert *** Cours 2014-09-07 lun 8:45-12:00)

Re: [O] Getting rid of the #+begin_example #+end_example in src blocks evaluation

2015-08-27 Thread Julien Cubizolles
John Kitchin jkitc...@andrew.cmu.edu writes: Put :results raw in the src header? Thank you!