From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: tangle and comments. Date: Mon, 30 Oct 2017 19:08:33 +0200 Message-ID: <87wp3c7ecu.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e9DYh-0005Cd-J8 for emacs-orgmode@gnu.org; Mon, 30 Oct 2017 13:09:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e9DYd-0002CN-8q for emacs-orgmode@gnu.org; Mon, 30 Oct 2017 13:09:07 -0400 Received: from [195.159.176.226] (port=41597 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e9DYd-0002Bu-1C for emacs-orgmode@gnu.org; Mon, 30 Oct 2017 13:09:03 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1e9DYJ-0001qm-SW for emacs-orgmode@gnu.org; Mon, 30 Oct 2017 18:08:43 +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 Hi I followed the instructions found in http://eschulte.github.io/babel-dev/DONE-tangle-entire-org-mode-file-in-comments.html Although they are 7 years old however when I try to tangle the example file I receive Tangled 0 code blocks from tangle2.org Here is the file just in case Uwe Brauer **** tangling with yes or link comments :PROPERTIES: :comments: yes :tangle: comments.el :END: The top block #+begin_src emacs-lisp (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