From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Getting rid of the #+begin_example #+end_example in src blocks evaluation Date: Thu, 27 Aug 2015 13:08:39 +0200 Message-ID: <874mjl7zuw.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUv38-00050b-Vs for emacs-orgmode@gnu.org; Thu, 27 Aug 2015 07:08:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUv35-000296-FR for emacs-orgmode@gnu.org; Thu, 27 Aug 2015 07:08:54 -0400 Received: from plane.gmane.org ([80.91.229.3]:51606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUv35-00028Z-8R for emacs-orgmode@gnu.org; Thu, 27 Aug 2015 07:08:51 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZUv30-0000xt-MP for emacs-orgmode@gnu.org; Thu, 27 Aug 2015 13:08:46 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Aug 2015 13:08:46 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 27 Aug 2015 13:08:46 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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))) (set-text-properties 0 (length str) nil str) str)) #+end_src but the results is bracketed by a #+begin_example *** Cours.... #+end_example which can of course very easily be removed. Is there a way to get only the headingsĀ ? Julien.