From mboxrd@z Thu Jan 1 00:00:00 1970 From: Saptarshi Guha Subject: Wrong indentation for SRC tag in Python mode Date: Wed, 9 Dec 2009 22:06:57 -0500 Message-ID: <1e7471d50912091906v18d105d1qc9791d9adf15bcce@mail.gmail.com> Reply-To: sguha@purdue.edu Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NIZNF-0006Zl-I5 for emacs-orgmode@gnu.org; Wed, 09 Dec 2009 22:07:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NIZN9-0006XL-RW for emacs-orgmode@gnu.org; Wed, 09 Dec 2009 22:07:23 -0500 Received: from [199.232.76.173] (port=50246 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NIZN9-0006XG-Md for emacs-orgmode@gnu.org; Wed, 09 Dec 2009 22:07:19 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:54063) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NIZN9-0007Oa-8f for emacs-orgmode@gnu.org; Wed, 09 Dec 2009 22:07:19 -0500 Received: by fxm5 with SMTP id 5so7491672fxm.8 for ; Wed, 09 Dec 2009 19:07:17 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, I'm using Aquamacs preview 2.0 and 6.32trans to export the following snippet to HTML. However, the HTML formatting does not reflect the correct indentation. It does work in the emacs terminal version(i.e emacs with the same version of org) Could this be an Aquamacs issue or how org interacts with Aquamacs Regards Saptarshi ## org begins Test one two or three Four five. Six Seven #+BEGIN_SRC python ##play_info has members that reflect play e.g. title,how,extras(extra keywords) def pre_play(x): play_info = x.playInfo() if mail_gmail(to="saptarshi.guha@gmail.com",subject="My Music!",text=str(play_info)): print "Sent Email" ## Playable play(title="BollyMore",type=URL,how="http://64.62.194.5:24236") wakeup(title='Music',start=5,play='BollyMore',gaddy=10) #+END_SRC