From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?iso-8859-1?Q?Vincent_Bela=EFche?= Subject: Verbatim export Date: Thu, 08 Jul 2010 20:35:27 +0200 Message-ID: <80zky1n7o0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=38546 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OWvyZ-0000dK-7a for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 14:37:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OWvyX-0008BS-Kv for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 14:37:34 -0400 Received: from smtp20.orange.fr ([80.12.242.26]:3358) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OWvyX-0008BH-Fn for emacs-orgmode@gnu.org; Thu, 08 Jul 2010 14:37:33 -0400 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: Org mode Cc: =?iso-8859-1?Q?Vincent_Bela=EFche?= Hello, I would like to know how to make some sequence of characters to be verbatim, ie that special characters lose their special meaning. For instance in the following quote the first `-' will be interpreted as a bullet point when exporting to HTML #+begin_quote - this - #+end_quote So I tried this: #+begin_quote ~-~ this - #+end_quote but then the first `-' is not in the same font as the second one, it looks exaclty the same as if I had used the code =xxx= font specfication. I also tried this: #+begin_quote \- this - #+end_quote I does not work (the first dash is not exported at all). The same problem is for `[0]', how can you get this string not to be interpreted as a footnote reference. It should be possible to make the following type of things: #+begin_verbatim [0] #+end_verbatim or \verbatim{EOF}Hello - EOF where EOF can be any string that is not found in the verbatim string. so \verbatim{.}Hello - . would to the same as \verbatim{xxx}Hello - xxx. In the same vein, it would be useful to have some \relax{} macro not expanding to anything, this way _\relax{} some underlining with underlined leading spaces_ would work. BR, Vincent.