From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: How to disable description lists? Date: Sun, 29 May 2011 10:31:44 -0400 Message-ID: <87zkm5pohb.fsf@ericabrahamsen.net> References: <20110529123901.GA1631@gmail.com> <81k4d9hcd5.fsf@gmail.com> <20110529133530.GA9007@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53047) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QQh26-00038h-SJ for emacs-orgmode@gnu.org; Sun, 29 May 2011 10:31:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QQh25-0007uE-TO for emacs-orgmode@gnu.org; Sun, 29 May 2011 10:31:58 -0400 Received: from lo.gmane.org ([80.91.229.12]:45237) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QQh25-0007u8-Ll for emacs-orgmode@gnu.org; Sun, 29 May 2011 10:31:57 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QQh23-00080J-Tk for emacs-orgmode@gnu.org; Sun, 29 May 2011 16:31:55 +0200 Received: from dyn-209-2-216-243.dyn.columbia.edu ([209.2.216.243]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 29 May 2011 16:31:55 +0200 Received: from eric by dyn-209-2-216-243.dyn.columbia.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 29 May 2011 16:31:55 +0200 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 Markus Berlin writes: > * Jambunathan K [29.05.2011 15:20]: >> > >> > is there a simple way to disable the description list syntax in a >> > document? That is, how can I prevent emacs from interpreting '::' as >> > a description list separator (in a given document)? >> > >> >> Put your code within babel block. I believe it shouldn't happen >> then. Are just turn off orgmode. >> >> #+begin_src >> >> #+end_src >> > > Yes, I do that whenever I have block-level code. But often I want to > use inline '::' notation in normal org-mode lists, something like: > > ,---- > ! - a type is a collection of related values > ! - notation: ~v :: T~, "v is a value in the type T", "v has type T" > `---- If you use the code markup (which might be desirable anyway, if you're mixing code and regular text), org mode should not interpret anything inside that markup as org text. So: - notation: =~v :: T~=, "v is a value........ Ought to work. Eric