From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uriel Avalos Subject: Re: Insert ampersand in HTML export? Date: Thu, 17 Feb 2011 13:41:38 -0500 Message-ID: <38985.219403594$1297968167@news.gmane.org> References: <20110210152542.26383056amscopub-mail@yahoo.com@dove.localdomain> <20110211114831.2a53a9ffamscopub-mail@yahoo.com@dove.localdomain> <874o89tmwf.fsf@altern.org> <8623B408-3E2C-4BC2-BF7B-179A7C295A17@gmail.com> <871v3dp97c.fsf@gnu.org> <20110212155103.16e82a76uriavalos@yahoo.com@dove.localdomain> <87aai0pafe.fsf@gnu.org> <20110213135347.58c0c882uriavalos@yahoo.com@dove.localdomain> <8762snjvzi.fsf@altern.org> <20110216215007.51a0a126uriavalos@yahoo.com@dove.localdomain> <8762sjpcl1.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=36278 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pq8nV-0007Mr-OI for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 13:41:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pq8nU-0003jV-1g for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 13:41:49 -0500 Received: from smtp108.prem.mail.sp1.yahoo.com ([98.136.44.63]:47995) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Pq8nT-0003ir-Mr for emacs-orgmode@gnu.org; Thu, 17 Feb 2011 13:41:48 -0500 In-Reply-To: <8762sjpcl1.fsf@gnu.org> 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: Bastien Cc: emacs-orgmode@gnu.org On Thu, 17 Feb 2011 04:24:58 +0100 Bastien wrote: > Hi uriel, > > Uriel Avalos writes: > > > #+BIND: org-export-html-protect-char-alist '("&" . "&") > > > > That's telling me I'm using the "wrong type argument: listp, quote" > > It must be this: > > #+BIND: org-export-html-protect-char-alist '(("&" . "&")) > > The "-alist" suffix means it should be an alist -- see the Info node for > Association lists in the Elisp manual. > > -- > Bastien > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode Nope. It still doesn't work. This is my test file: #+BIND: org-export-html-protect-char-alist '(("&" . "&")) #+MACRO test & should stay as is Hello world & I get the same error when I try to export: "wrong type argument: listp, quote"