From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: Re: tangle and comments. Date: Tue, 31 Oct 2017 20:12:55 +0200 Message-ID: <87efpjchjs.fsf@mat.ucm.es> References: <87wp3c7ecu.fsf@mat.ucm.es> <877evbbvyb.fsf@delle7240.chemeng.ucl.ac.uk> <874lqfe33g.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e9b2O-0001Oe-O0 for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 14:13:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e9b2K-0000Bl-OS for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 14:13:20 -0400 Received: from [195.159.176.226] (port=51382 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e9b2K-00005n-GR for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 14:13:16 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1e9b20-0004cy-SQ for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 19:12:56 +0100 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" To: emacs-orgmode@gnu.org >>> "Yury" == Yury G Kudryashov writes: > Uwe Brauer writes: >> Thanks but the following file does not work neither >> that is running org-babel-tangle gives me >> >> Tangled 0 code blocks from tangle2.org > You should add ":tangle yes" or ":tangle output.el" to header-args. Hm thanks but it does not work neither Please try this, for me nothing is tangled. * tangling with yes or link comments :PROPERTIES: :header-args: :comments org :tangle: output.el :END: The top block #+begin_src emacs-lisp :comments org (message "first block") #+end_src here's some text which won't be tangled ***** subheading another block | 1 | first | | 2 | second | #+source: tangle-el-the-second #+begin_src emacs-lisp (message "second") #+end_src and finally a block with a =:noweb= header argument #+begin_src emacs-lisp :noweb yes (progn <>) #+end_src