From mboxrd@z Thu Jan 1 00:00:00 1970 From: dlc Subject: Tangling text files Date: Fri, 27 Jan 2012 12:07:28 -0600 Message-ID: <46C672C4-4401-4ADD-8E30-68CAC7B1522F@coateconnection.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqqD3-0003XT-OY for emacs-orgmode@gnu.org; Fri, 27 Jan 2012 13:07:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqqCz-0003Ve-E7 for emacs-orgmode@gnu.org; Fri, 27 Jan 2012 13:07:37 -0500 Received: from coateconnection.com ([69.56.251.74]:54885 helo=mail.coateconnection.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqqCz-0003VY-66 for emacs-orgmode@gnu.org; Fri, 27 Jan 2012 13:07:33 -0500 Received: from [192.168.1.24] (110gis178.gulftel.com [216.231.178.110]) by mail.coateconnection.com (Postfix) with ESMTP id 8321C53F2E for ; Fri, 27 Jan 2012 13:07:30 -0500 (EST) 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: Org Mode How do I tangle txt to a txt file? #+TITLE: Centos 5 Apache Configuration #+AUTHOR: David Coate * Basic Conguration * Php Settings * Virtual Host e.g. for apache configuration ** example.com Use this as main website, use drupal, various other notes #+BEGIN_SRC: txt :tangle vhost.conf ServerName Example.com DocumentRoot "/var/www/example.com" #+END_SRC: ** companyb.com notes about company b. #+BEGIN_SRC: txt :tangle vhost.conf ServerName Companyb.com DocumentRoot "/var/www/companyb.com" #+END_SRC: ... and so on for 40 more web sites. I still want to be able to export this as HTML to document to others what i've done and use the org file to maintain the webpage and the source conf files. Same issue for documenting my configuration files for postfix, dovecot, drupal settings, php.ini settings. I'm sure this is easy, but searching the org manual or googling is not getting me the right answer. #+BEGIN_ASCII and #+BEGIN_EXAMPLE seem to be for exporting only and not tangling. Thanks! David