From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vladimir Lomov Subject: Problem with exporting TAB key Date: Thu, 5 Apr 2012 11:10:11 +0900 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43314) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFc9l-0005Jg-Nl for emacs-orgmode@gnu.org; Wed, 04 Apr 2012 22:10:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFc9k-0006MY-2M for emacs-orgmode@gnu.org; Wed, 04 Apr 2012 22:10:37 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:54846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFc9j-0006MM-PV for emacs-orgmode@gnu.org; Wed, 04 Apr 2012 22:10:35 -0400 Received: by werj55 with SMTP id j55so700214wer.0 for ; Wed, 04 Apr 2012 19:10:31 -0700 (PDT) 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 #+TITLE: Problem with exporting TAB key #+AUTHOR: Vladimir Lomov * How to make TAB key to be exported from ORG document? Consider the following example: #+name: ex1 #+BEGIN_SRC sh :exports code sort -t " " -k 3 -o file2 file1 sort -t " " -k 3 -o file3 file #+END_SRC How I inserting the TAB key in example: for first line I use =C-q C-I=, for second line I use =C-q TAB=, but in tangled file and in exported HTML document it is NOT a TAB just spaces. How to force export and tangle functions not to convert TAB to spaces? * COMMENT #+BEGIN_SRC sh :tangle ex.sh :shebang "#!/bin/bash" :noweb yes <> #+END_SRC --- WBR, Vladimir Lomov