From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Loyall, David" Subject: escape square brackets to express literal [[]] without link magic? Date: Fri, 18 Jan 2013 18:06:35 +0000 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="_000_FCEE4469EE8B234199968ECA9B0661E2086E2A5CSTNEEX10MB02sto_" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:57092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwGKw-0003OM-4s for emacs-orgmode@gnu.org; Fri, 18 Jan 2013 13:06:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TwGKs-0005nC-M4 for emacs-orgmode@gnu.org; Fri, 18 Jan 2013 13:06:41 -0500 Received: from mx01.ne.gov ([164.119.247.101]:48310) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwGKs-0005n1-Gs for emacs-orgmode@gnu.org; Fri, 18 Jan 2013 13:06:38 -0500 Content-Language: en-US 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" --_000_FCEE4469EE8B234199968ECA9B0661E2086E2A5CSTNEEX10MB02sto_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello. I want to add this item: * TODO change tags to wiki style [[!img]] tags ...But the square brackets get interpreted as links. I tried \[\[!img\]\], but that shows up unescaped. Does org-mode have an escape mechanism? Thanks, cheers, --Dave p.s. I'm new to org-mode and I like it. I'm excited about the ability to e= xecute code from nodes. Reminds me of leo-editor. --_000_FCEE4469EE8B234199968ECA9B0661E2086E2A5CSTNEEX10MB02sto_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hello.

 

I want to add this item:

* TODO change <img> tags to wiki style [[!img]= ] tags

 

...But the square brackets get interpreted as links.=

 

I tried \[\[!img\]\], but that shows up unescaped.

 

Does org-mode have an escape mechanism?

 

Thanks, cheers,

--Dave

 

p.s. I’m new to org-mode and I like it.  = I’m excited about the ability to execute code from nodes.  Remin= ds me of leo-editor.

--_000_FCEE4469EE8B234199968ECA9B0661E2086E2A5CSTNEEX10MB02sto_-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: escape square brackets to express literal [[]] without link magic? Date: Thu, 24 Jan 2013 14:22:03 +0100 Message-ID: <87boceogw4.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TyNiY-0003Wt-C8 for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:23:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TyNiW-0006aa-TG for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:23:50 -0500 Received: from mail-wg0-f45.google.com ([74.125.82.45]:62009) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TyNiW-0006aQ-NJ for emacs-orgmode@gnu.org; Thu, 24 Jan 2013 09:23:48 -0500 Received: by mail-wg0-f45.google.com with SMTP id dq12so1417426wgb.0 for ; Thu, 24 Jan 2013 06:23:48 -0800 (PST) In-Reply-To: (David Loyall's message of "Fri, 18 Jan 2013 18:06:35 +0000") 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: "Loyall, David" Cc: "emacs-orgmode@gnu.org" Hi David, "Loyall, David" writes: > Does org-mode have an escape mechanism? The new exporter handles links like =[[!img]]= correctly. Download Org: orgmode.org/org-7.9.3d.tar.gz Add the contrib lisp directory: (add-to-list 'load-path "~/org-7.9.3d/lisp/") (add-to-list 'load-path "~/org-7.9.3d/contrib/lisp/" t) (require 'org-export) (require 'org-e-html) M-x org-export-dispatch RET h H and you will have a buffer with the correct HTML output. HTH, -- Bastien