From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sean O'Halpin" Subject: Re: babel print Date: Wed, 22 Aug 2012 23:55:51 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4JqB-0005dR-K8 for emacs-orgmode@gnu.org; Wed, 22 Aug 2012 18:56:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T4Jq5-0004AE-5i for emacs-orgmode@gnu.org; Wed, 22 Aug 2012 18:55:59 -0400 Received: from mail-pb0-f41.google.com ([209.85.160.41]:38855) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T4Jq4-0004A6-U9 for emacs-orgmode@gnu.org; Wed, 22 Aug 2012 18:55:53 -0400 Received: by pbbro12 with SMTP id ro12so172215pbb.0 for ; Wed, 22 Aug 2012 15:55:51 -0700 (PDT) In-Reply-To: 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: skip Cc: emacs-orgmode@gnu.org On Wed, Aug 22, 2012 at 8:38 PM, skip wrote: > I have an org file with several src blocks and tangle blocks. > > How can I print the file without executing any of the src or tangle > blocks? I want to avoid disabling each block. Use #+PROPERTY: eval never at the head of the file and C-c on that line to refresh the local setup. This disables execution for all blocks in the file. Alternatively, you can use #+PROPERTY: eval no-export to disable it only for exporting. See http://orgmode.org/org.html#eval for details. > How can I generate the tangle files only without executing any other > src blocks in the file? I want to avoid going to each tangle block and > executing. =M-x org-babel-tangle= should tangle all the blocks in the file. See http://orgmode.org/org.html#Extracting-source-code Regards, Sean