From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Subject: Re: Where is the document in which all tags are described? Date: Sat, 10 Oct 2009 21:24:58 +0200 Message-ID: <1255202698.4859.55.camel@beteigeuze> References: <83fx9refyy.fsf@ymail.com> Reply-To: sebastian_rose@gmx.de Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MwhYx-0002VT-Gx for emacs-orgmode@gnu.org; Sat, 10 Oct 2009 15:25:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MwhYu-0002Pz-44 for emacs-orgmode@gnu.org; Sat, 10 Oct 2009 15:25:07 -0400 Received: from [199.232.76.173] (port=51175 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MwhYs-0002Pu-OR for emacs-orgmode@gnu.org; Sat, 10 Oct 2009 15:25:02 -0400 Received: from mail.gmx.net ([213.165.64.20]:33228) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MwhYs-0006Af-3Q for emacs-orgmode@gnu.org; Sat, 10 Oct 2009 15:25:02 -0400 In-Reply-To: <83fx9refyy.fsf@ymail.com> 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: Water Lin Cc: emacs-orgmode@gnu.org Am Samstag, den 10.10.2009, 17:49 +0800 schrieb Water Lin: > I am using org mode to build my own homepage now. I have perl scripts > need to be published to html from org file. > > I use following script to mark it: > ------------ > #+BEGIN_SRC perl > # insert some Perl script here > #+END_SRC > ------------ Hm - this will not be what you might expect when exported. E.g., if you search for '/^\s*# insert some Perl script here$/' the search might fail. The reason is, that the text will look like this in the XHTML file:
# insert some Perl
script here
Did you take that into account? Sebastian